PDA

View Full Version : Uniformly Size Form Buttons?


TranceNational
08-01-2002, 04:03 AM
You know how you can put form buttons in a table and make them all the same size in Netscape? Well, in IE, they all get messed up and look horrible.

Does anyone know how to make a bunch of form buttons the same size in IE?

Here's a link (I got them close by using spaces, but it still looks like doodoo):

http://www.angelfire.com/ct/consulting1/

Click the Consultant Consulting link.

Any help would be appreciated. Thanks.

Astro-Boy
08-01-2002, 04:21 AM
Give all your buttons a class, then change their width attribute:

<style type="text/css"><!--
.fButton { width:100px; }
--></style>

<form>
<input type="button" class="fButton" value="Yes">
<input type="button" class="fButton" value="No">
</form>

- Mark

TranceNational
08-02-2002, 03:21 AM
Thanks Mark! That did it. You rule!!!!!!