It looks like you put it in header.php, but I don’t think that you put it where I said to put it. Go to your About page and view the source.
The first line reads:
<link href='classic' type='text/css'><link href='default' type='text/css'>
These links are wrong because they:
- Are outside of the
<head>
.
- Come before the DOCTYPE – which seems to force IE into quirks mode.
- Do not possess href attributes that reference a valid resource.
- Are missing the rel attribute.
In your header.php file, look for the line that looks like this:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
Put the conditional code after that line. This will allow your new style sheets to overwrite the styles in style.css.
Could you explain exactly what you are trying to accomplish here? from your last post, I get the impression that you do not want the main stylesheet to be linked at all. Is this correct?