If you view any of the following pages with Firefox, then Internet Explorer, you'll see some navigation links in the top left corner of the page in Firefox, but nothing in IE:
http://www.geobop.org/World/Arizona
http://www.world.org/Arizona
http://www.geozoo.org/World/Arizona
http://www.geosymbols.org/World/Arizona
http://www.politix.us/World/Arizona
I haven't been able to figure out how to fix it, but I'd at least like to stop jerking Firefox around while trying to solve it. So I decided to use a conditional comment to display a CSS style for IE only. But it doesn't seem to work.
To test it, I inserted an outrageous style...
body ( font-size: 250% )
It works in both Firefox and IE if I remove the conditional comments. But with the conditional comments, it doesn't work in either one. So I guess I'm not writing my conditional comment tags correctly. Can someone show me how you do yours?
This is what I have in my HTML:
And this is what I see in my source code with IE:PHP Code:echo '<!--[if gte IE 5]
<link href="'.$BaseURL.'/a1/css/microsux.css" rel="stylesheet" type="text/css" />
[endif]-->';
?>
Here's my source code for Firefox, though the text appears to be commented out:PHP Code:<!--[if gte IE 5]
<link href="http://www.geobop.org/a1/css/microsux.css" rel="stylesheet" type="text/css" />
[endif]-->
Thanks.PHP Code:<!--[if gte IE 5]
<link href="/a1/css/microsux.css" rel="stylesheet" type="text/css" />
[endif]-->






Bookmarks