No problem
The conditional CSS isn't working for other browsers because it needs to be:
<!--[if !IE]>--><link rel="stylesheet" type="text/css" href="cmacss/css1.css"><!--<![endif]-->
with closed comments on that particular conditional statement. IE knows what to do and the other browsers will just ignore the [if/endif]
Sorry but I'm sure you're wrong there. Either way, that doesn't work either and the declaration is outside of the comments so wouldn't that make the second style sheet back in the document as a regular declaration?
From what I've read online, you're supposed to have a regular one and hide the others in the comments with the IF conditions. I must be doing something wrong though because its just not working for me
and other browsers ignore the [!IE] (not IE) altogether, so appear to need one stated normally.
If I still had some hair I could grab I'd be tearing it out right about now...
---------- Post added at 13:37 ---------- Previous post was at 13:09 ----------
If I use the css file normally, my links show up fine. If I declare it with the conditional, it just uses the one outside the conditional statement instead.
If I put them both in conditional statements, no browsers can find a CSS file.
Which says to me the conditional statements are invalid... But the one you showed me doesn't work either

icard
Sorry if I came across as arrogant in my last post but this is doing my nut in :roll:
---------- Post added at 13:44 ---------- Previous post was at 13:37 ----------
My bad I put it in the wrong place -.- Sorry!
Only issue now is that they're conflicting for some reason. on browsers that aren't IE, the links are screwed up. They work fine without the other CSS file included. :dry:
I'll keep at it
Sorry again, and thanks.
---------- Post added at 13:54 ---------- Previous post was at 13:44 ----------
I did have to fix it a little however afterall,
<!--[if !IE]>--><link rel="stylesheet" type="text/css" href="cmacss/css1.css"><!--<![endif]-->
Should be
<!--[if !IE]><link rel="stylesheet" type="text/css" href="cmacss/css1.css"><!--<![endif]-->
the line is now in comments and it works

Just need to figure out why the menus are screwey now and I'm golden, 
Thanks again 
---------- Post added at 14:02 ---------- Previous post was at 13:54 ----------
AHH YOU SOB!
ROFL!!!
okay so theres different ways depending on whether its not IE or IE you're doing it for!
<!--[if !IE]>--><link rel="stylesheet" type="text/css" href="cmacss/css1.css"><!--<![endif]-->
IS correct! But its...
<!--[if IE]><link rel="stylesheet" type="text/css" href="cmacss/css1.css"><!--<![endif]-->
...with the arrow shape after the IE declaration removed when you're catering for IE. Thats so wierd and unintuitive. :double
So why does NOT IE need the extra --> ?