View Full Version : Slight Problem - With Buttons


Goldie Da Mac
06-17-2004, 03:16 PM
Click Here To view buttons on my site (http://www.geocities.com/mkballerz//index.html)


Got a slight problem..

I have found some buttons I would like to display on my site but the problem is the buttons change size depending how big the words are within the button. This can be seen in the link above.

Can anyone tell show me how to keep the frame the same size despite how big the word is within the button? is it possible?

The code is displayed below...

<FORM METHOD="link"
ACTION="URL HERE">
<INPUT TYPE="submit"
VALUE="TEXT HERE"
style="font-family:FONT"
style="border style:solid"
style="background:COLOR"
style="color:COLORHERE">
</FORM>

Dude128
06-17-2004, 03:43 PM
you could specify the width of the button. also, that code can be cleaned up:

<FORM METHOD="link"
ACTION="URL HERE">
<INPUT TYPE="submit"
VALUE="TEXT HERE"
style="font-family:FONT; border style:solid; background:COLOR; color:COLORHERE; width: WIDTHpx">
</FORM>