Thread: doctype problem
View Single Post
Old 07-15-2009, 06:11 AM   #7 (permalink)
zxt3st
The Addict
 
zxt3st's Avatar
 
Join Date: Apr 2008
Posts: 200
Thanks: 18
zxt3st is on a distinguished road
Default

Is this solve already? or any other issue regarding this topic? If so, then let me add :)

Quote:
Originally Posted by adamdecaf View Post
Ah, a classic issue of IE modifying your design settings. Your doing nothing wrong it's just that Internet Explorer has horrible record of not being standards specific (FF isn't either but it's not required for this point).

You will have to create a different style sheet for each browser, everyone has to, sorry.

For a simple fix you could do something like this:
Code:
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" href="IE-override.css" />
<![endif]--> 
<!--[if IE 6]>
<link rel="stylesheet" type="text/css" href="IE6-override.css" />
<![endif]-->
Yummy! :)

Actually you can do 2 things here:
Quote:
1. Modify your css by using CSS standard specifications which are both supported by FF and IE. Refer here -> http://www.w3.org/Style/CSS/
2. You can create another stylesheet for IE users, the do the implementation above.
You can also refer to google search for your further queries regarding IE bugs on CSS.

IE CSS BUGS

Goodluck!
__________________
Serenity Project - 5% (Layout) - Ongoing....
Project Serenity Free Life!....
zxt3st is offline  
Reply With Quote
The Following User Says Thank You to zxt3st For This Useful Post:
ebuoe (07-15-2009)