Is there a way to lock a table column size so it looks fine in all browsers???? I have a simple webpage design that uses columns. Unfortunatly, the columns size varies wildly and look awful in Firefox! I have tried many times to fix this such that three columns on my page have the same width. At best the webpage looks fine in OpenOffice or Frontpage but looks like sh*t in Firefox preview. any help would be appreciated.
Use Divs but preferably dont use absolute positioning. Max Designs Take a look in the float tutorials for some layouts and there are loads of other good tutorials for CSS designs. Glish Layouts And the A List Apart Link given by samspunk is an exellent resouce too.
Set your table width to the size you want then use transparent spacer.gif's in the table cells to fix the width so it doesn't go below that. You can then also set your table to 100 percent and have a fourth column with width="99%"and it will take up all but what you have allocated with the spacer.gif's. That way as a user changes width's only the outer column will grow or shringk and other three will stay constant. that is the old school before css way of doing things. Still useful to acheive certain effects.
<table width="600" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="25"></td> <td width="60"></td> <td width="90"></td> <td width="35"></td> </tr> </table> As shown above you can fix the width of td. When you are giving width size to td don't forget to remove   that exist between opening and closing tags of td. Give a try. There is no need of Spacer.
fix width of td's don't work on all browsers that's why you use spacers. Netscape is really weird with that. BTW how long does it take to load a 1px X 1px image? Thats pretty much standard for non CSS layout.
thanks for the tips; Openoffice does not support css; so ill look at those tutorials later (i know that css is the correct solution) but in the meantime I'll try the spacer gif thing-seems like the ticket!
thanks for the tips; Openoffice does not support css; so ill look at those tutorials later (i know that css is the correct solution) but in the meantime I'll try the spacer gif thing-seems like the ticket!
I agree. Spacers are useful solutions to fix width and length and won't increase file size and not an obstructions for page loading.