Search the archives!
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Javascript] RE: Font size control bar
- From: BConner at huntsvilletx.gov (Barry Conner)
- Subject: [Javascript] RE: Font size control bar
- Date: Wed Oct 12 18:16:55 2005
P.S. For Clarification: The popup window is a frames window. The control bar is displayed in one of the frames just below the header frame. Barry ________________________________ From: Barry Conner Sent: Wed 2005-10-12 5:59 PM To: Javascript@xxxxxxxxxx Subject: Font size control bar I've created the following little view control bar which I designed to display in a frames navigation window for my HTML-based application interface. The frame is generated as a popup to exclude all of the undesirable toolbar & status bar overhead. The actual font manipulation here is handled via a set of JS & CSS files (as posted at http://www.alistapart.com/articles/relafont ) HERES THE QUESTION: This is intended as a mere view control bar, so how might I script the fontsize controls to act on the main frame rather than on itself??? Thanks for any thoughts you might have on a solution! Barry <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~--> <form name="font_select" action="GET"> <table align="center" width="100%" location="0" cellspacing="0" cellpadding="4" rules=cols frame=below border="1" margins="0"> <tr> <td width="25%"> <strong> View Control: </strong> </td> <td align="center"> <button type="button" onclick="javascript:history.back()"><small> Back </small></button> </td> <td align="center"> <button type="button" onclick="javascript:history.forward()"><small>Forward</small></button> </td> <td align="center"> <button type="button" onclick="javascript:fontsizedown();" value=" font - " /> <small>Smaller Font</small></button> </td> <td align="center"> <button type="button" onclick="javascript:fontsizereset()" /> <small> Reset Font </small></button> </td> <td align="center"> <button type="button" onclick="javascript:fontsizeup();" value=" font + " /> <small> Larger Font </small></button> </td> </tr> </table> <hr /> </form> <!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
- Follow-Ups:
- [Javascript] RE: Font size control bar
- From: Laurent Muchacho
- [Javascript] RE: Font size control bar
- Prev by Date: [Javascript] Font size control bar
- Next by Date: [Javascript] RE: Font size control bar
- Previous by thread: [Javascript] Font size control bar
- Next by thread: [Javascript] RE: Font size control bar
- Index(es):