• I run an online magazine. I use wordpress for the blog. I don’t design themes from scratch; I customize them from designed themes. The current theme I have up looks great in Safari, but it goes bezerk in IE. Please Help!! The website is https://www.thesyllabuzzmag.com and the necessary CSS is below. I also have a separate IE CSS (posted under the regular CSS), but I don’t think it’s working.

    body{
    text-align:center;
    background-color: #CCCCCC;
    border-top: 10px #999999 solid;
    border-bottom: 10px #CC0000 solid;
    border-left: 10px #000000 solid;
    border-right: 10px #000000 solid;
    }

    div#header{
    height: 285px;
    position:relative;
    margin-left:0px;
    }

    #header_image{
    position:absolute;
    margin-left:20px;
    margin-top:15px;
    }

    div#container{
    text-align:left;
    }

    div#container{
    width:1000px;
    margin: 0px auto 0em auto;
    background-color:#FFFFFF;
    }
    div#wrapper{clear:both;
    width:485px;
    float:left;
    }

    div#content{
    margin-top: 25px;
    _margin-top: 100px; /* IE Fix */
    margin-left: 25px;
    border-top: 1px #CCCCCC solid;
    margin-left: 10px;
    margin-right: 10px;}

    div#content_page{
    text-align:left;
    width:778px;
    height:600px;
    }

    div#navigation{
    overflow:inherit;
    float:left;
    margin-left: 85px;
    margin-top: 25px;
    width:300px;
    margin-bottom: 1em;
    border-top: 1px #CCCCCC solid;
    }

    div#extra{
    position:absolute;
    margin: 0;
    padding: 0;
    left:0;
    right:0;
    top:15px;
    height:285px;
    margin-left: 200px;
    clear:both;}

    div#footer{
    clear:both;
    width:100%;
    height:50px;
    text-align: right;
    padding-bottom: 15px;}

    /*navbar*/

    #nav{
    position:absolute;
    margin: 0;
    padding: 0;
    right:22px;
    bottom: -10px;
    width:600px;
    }
    #navbar{
    float: right;}

    ul#navbar{
    margin:0;
    padding:0;}
    #navbar li{
    display: inline;
    }

    #navbar li a{
    float: left;
    color: #000000;
    margin-left: 1px;
    text-align: left;
    font-size: 10px;
    line-height: 15px;
    padding-left: 5px;
    padding-right: 5px;}

    What I have in the header.php:
    <!–[if IE ]>
    <link rel=”stylesheet” href=”iefix.css” type=”text/css” />
    <![endif]–>

    IE CSS:
    div#extra{
    position:relative;
    float:left;
    margin: 0;
    padding: 0;
    left:0;
    right:0;
    top:15px;
    height:285px;
    clear:both;}

  • The topic ‘Theme been drinking too much in IE’ is closed to new replies.