Hi,
Set the table cell align attributes to halign="left" valign="top".
You may also like to validate your pages with the w3c validator at http://validator.w3.org/check uri={replace with your web page uri}
You will find some cool debug tools on
The IE Developer Toolbar - http://www.microsoft.com/downloads/details.aspx FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en
Debugbar - http://www.debugbar.com
IEWatch - http://www.iewatch.com
Regards.
HI,
<TABLE cellSpacing=
0 cellPadding=12 width="100%"><TBODY><TR>
<TD>
<H2>
Company</H2></TD></TR></TBODY></TABLE>
Specify or remove the cellPadding from the table tag. eg 12px i/o just 12.
Other
CSS Validator
IE Developer Toolbar
Debug Bar - http://www.debugbar.com
IEWatch - http://www.iewatch.com
Regards.
Hi,
Tag style takes precedence over inline style which takes precedence over user stylesheets which takes precedence over external stylesheets. Don't forget that browser settings can alter the page layout. When I disable the external stylesheet link on your page there is no discernable change to the page layout..... indicates that tag style attributes are conflicting with your external stylesheet(this would explain your previous reply). If you want to force your uses to see your pages the way you design them you have to use tag style attributes.
My basic rules
1. Avoid styling - let the user decide how they want to see your pages. Why is Google.com so popular
2. Avoid hardwired font size, families. Use relative font sizes, don't use font families (again user settings can overwrite these, although google does specify Times Roman for english pages.)
3. Avoid absolute table widths.. let the tables expand and contract with user changes to the browser view-port dimensions. Follow the Gravity rule for layout. Users scan pages from left to right, top to bottom (except for some middle eastern languages). Use Bold to highlight keywords in your text. Users tend not to read word for word, but scan for keywords before focusing on a paragraph of interest.
4. KISS is best.
5. The User is KING.
I know that most web designers would disagree with me on these principles. It depends what you want to achieve with your web pages... to inform or to entice. Appearance is subjective.
Regards.