View Full Version : Link button size


pyroteq
05-10-2003, 04:26 AM
ok i have frames and on the left is my menu but all the link buttons are different sizes, how do i make them all the same size here is a code example

<form method="link" action="http://www.geocities.com/brutal_fortress/characters.html"> <input type="submit" value="Characters" rows=6 COLS=26 width="31" height="21" style="font-family:arial" style="border style:solid" style="background:#ff3300" style="color:#ffcc33"></form>

I could do it by putting alott of spaces in at the start and end of the value but it would still look messy

plz help

Alcy
05-10-2003, 04:30 AM
You could use CSS....

<style type="text/css">
input
{
width:#;
height:#;
}
</style>

pyroteq
05-10-2003, 04:38 AM
where abouts would i insert that code?

sabrinastar
05-10-2003, 06:10 AM
just put it at the top of your page in between the <html> and the <head> codes

tayjalee
05-10-2003, 09:31 AM
you could resize your buttons in the graphics program of your choice and then reload them

lefty
05-10-2003, 04:26 PM
Originally posted by sabrinastar
just put it at the top of your page in between the <html> and the <head> codes

Actually, it goes between <HEAD> and </HEAD> ;)

keithb
07-11-2003, 05:13 PM
the CSS help worked.
Many many thanks.
Can I use this to change the color, the font and the background of the buttons.
Putting the "style" commands in the way they are given in the example doesn't seem to work - why is this?

Thanks again
Keith