OZONE Asylum
Forums
Stupid Basic HTML
Spacing around a table
This page's ID:
9516
Search
QuickChanges
Forums
FAQ
Archives
Register
Edit Post
Who can edit a post?
The poster and administrators may edit a post. The poster can only edit it for a short while after the initial post.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
Genevieve: OK I've doubled checked and there is a typo in your styles: [quote] .center { margin:auto padding:0px; text-align:center; /* Hack for IE5/Win */ } [/quote] the margin:auto style needs a sem-colon after it or it is invalid and while it will work in browsers that allow sloppy coding (like IE/Win) I would imagine that that other stricter browsers (like Opera and pos. IE/Mac) might not be happy with that. For the record IE/Mac is a different browser to IE/Win - it has its own development team I believe and something that works in one may no work in the other. IE/Mac does tend to have better support for standards but I have noticed a number of things that cause it to have real problems (lots of DIVs for example). Jeni or Steve might be able to cast more light on that issue but I think it is purely a problem with your CSS. If not I'd probably tweak this: [quote] #Content { margin:0px auto; /* Right and left margin widths set to "auto" */ text-align:left; /* Counteract to IE5/Win Hack */ } [/quote] I would try not to reset the same styles for the same element (its a waste of time for starters but could cause some kind of interference - never heard of such a thing but if you are still having trouble then I'd look at that) and might do something like: [code] #content td, #content p { text-align: left; } [/code] in fact get rid of the name and id and do: [code] .center td, .center p { text-align: left; } [/code] So give that a try and see how it goes. ___________________ Emps FAQs: [url=http://faq.ozoneasylum.com/53/]Emperor[/url]
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »