Below is a partial HTML listing for an array of buttons (as in a calculator pad).
Code follows:-
_______________________________________
<BR><BR><p align="center" ><font size="7">
<input type="button" name=b7 value="7" onclick=keyclick("7")>
<input type="button" name=b8 value="8" onclick=keyclick("8")>
<input type="button" name=b9 value="9" onclick=keyclick("9")>
________________________________________
What I need to do is to increase the font size of the value character. The <font size> command has no effect. I have not attempted to use a style because I can't see how to apply this.
Thanks
Gord
//This code will set the value text to yellow, 18pt.
<style type="text/css">
.mypad{background-color: Yellow; font-size : 18pt ;width:30;} </style>
<input type=button class=mypad value="7">
Changed the coding to web standards. Remember, input tags go between properly coded "form" tags. Depending on your document type, you may have to use paragraph or div tags.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum