07-15-2009, 06:11 AM
|
#7 (permalink)
|
|
The Addict
Join Date: Apr 2008
Posts: 200
Thanks: 18
|
Is this solve already? or any other issue regarding this topic? If so, then let me add :)
Quote:
Originally Posted by adamdecaf
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!
|
|
|
|