So, on this page, everything looks great in safari, chrome, firefox, but wack in ie. Specifically, the social media icons at the lower left corner of the page. Can someone please take a look and let me know what the issue is? I've tried several things but don't quite know what's wrong.
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
But it's probably something to do with the absolute positioning of the footer.
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
If you insist on keeping AP on the footer, and it's looking ok in everything but IE, then just use conditional comments pointing at a stylesheet with just the fixes for IE. Web designers will be doing that as long as IE continues to exist.
tim
__________________ SEO "experts" smell like Big Fish_|_ Please login or register to view this content. Registration is FREE
And you can use lt (less than) gt (greater than) lte (less than or equal to)
gte (greater than or equal to) before IE and the version number to target
multiple versions.
tim
__________________ SEO "experts" smell like Big Fish_|_ Please login or register to view this content. Registration is FREE
Try to simply remove id attribute id="social..." from the table tag and manipulate with the padding-left padding-top of table's parent div.
__________________ explozive.com :: Open Source PHP Framework Please login or register to view this content. Registration is FREE
website4realty.com :: Real Estate Website and Mobile Platform Engine
Free and Open Source Please login or register to view this content. Registration is FREE
Try to simply remove id attribute id="social..." from the table tag and manipulate with the padding-left padding-top of table's parent div.
You have the same id on the div and table. ID's have to be unique and used only once per page. Classes can be used multiple times per page.
In your case Fireox is applying your #social_media { padding-top : 30px;} to both elements with the ID of social_media (div and table), IE is only applying it to the div.
Remove the ID (or rename it to something unique) from the table and change the css style to 60px: