Muzammil
Muzammil

Reputation: 508

Having issue with IE8 and IE7

i am trying to fix this but i m messed up. i m not spamming i really need help.

<!--[if IE 7 ]>
    <link href="http://www.mulberrydesignerkitchens.com/wp-content/themes/MBK/ie7.css" rel="stylesheet" type="text/css">
<![endif]-->

<!--[if IE 8 ]>
    <link href="http://www.mulberrydesignerkitchens.com/wp-content/themes/MBK/ie8.css" rel="stylesheet" type="text/css">
<![endif]-->

IE7

#site header #telephone {
    float: right:
    width: 600px;
}

#site header #telephone p {
    color: #fff;
}

and in IE8

header #telephone {
    float: right:
    width: 600px;
}

please preview this image for more information:

enter image description here

but nothing is happening when i try to open the site in IE7 or IE8.

Upvotes: 0

Views: 125

Answers (1)

Sven Bieder
Sven Bieder

Reputation: 5681

You must decide what you want, you use either a link tag to link in an external stylesheet, or you use the style tag. but not the link tag in the style tag.

Upvotes: 1

Related Questions