IE problems.. (rel=stylesheet) works in FF

Down&Outdesigns

New Member
ok.. so im running on a macbook pro 15inch screen..

dreamweaver CS4..

and my page works perfectly fine in FF..

but when i got to IE its all jacked up with the placings..


i tried using the if IE link rel="stylesheet" href="layout_ie.css" etc... code

and made a seperate css file using my moms computer to help guide me in positioning.. but everytime i changed something it wouldnt move at all..

everything stayed in the same spot..


i uploaded the css file to my server, so i know its not that.. its correctly linked and coded... ( I THINK ) :/


anyone have any suggestions..

http://www.downandoutdesigns.com


im use to coding myspace bands pages.. and i know how to make them work in FF and IE

by using the pseudo coding..

margin-top: .. for FF and
_margin-top: .. for IE

HELP?!
 

AusQB

New Member
I don't think the line you used does anything:

<!--[if lte IE]><href="ie.html" /><![endif]-->


Instead, use this:

<!--[if lte IE6]><link href="ie_layout.css" rel="stylesheet" type="text/css" /><![endif]-->


I'm not sure if it makes a difference, but I think the "lte" condition requires you to specify a version, which in most cases is 6.
 
Top