• I am trying to get my logo to link to my homepage, and then have navigation on the right hand side. I’ve made some changes to my .css file, and now need to figure out how to fix the way it looks. Site is http://www.christiandads.com and it looks perfect in Firefox, but not in Internet Explorer.

    Can someone take a look at my .css file and tell me how I can get my navigation in IE (currently under logo) to go to the right of the logo, as seen in Firefox?

Viewing 9 replies - 1 through 9 (of 9 total)
  • float:right?

    Thread Starter bmg1227

    (@bmg1227)

    div#pageslogo {
    height: 90px;
    width: 310px;
    float: left;
    margin: 0px auto 0px;
    }

    div#pagesright {
    height: 90px;
    width: 400px;
    float: right;
    margin: 0px auto 0px;
    }

    I already have that.

    um.. this might just be me, but I don’t see a need for “div” in there (in the css… i don’t ever use that when styling divs)

    try removing the “div” and have it start just with “#” – as long as you’re calling it up properly in the header (<div id="pagesright">) then it should work.

    Thread Starter bmg1227

    (@bmg1227)

    Didn’t help. I removed div from css, and the same. 🙁

    hmmm…

    well i did find these:
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.christiandads.com%2F&charset=%28detect+automatically%29&doctype=Inline&ss=1
    73 errors. sometimes when you get in and start fixing those (which you should do no matter what) other things begin to fall back into their proper places…

    maybe try starting with that?

    also – where is your styling for that menu? is that all you have (what you show already) or do you have stuff for the ul/li part of the style?

    i’m confused because when viewing your source, it’s showing me that menu backwards from the way it’s displaying. and i don’t see anything in the CSS snippet you gave to actually list it out horizontally like that…

    NOTE: I just refreshed the site in IE – it’s now working for you the way you wanted I see!

    Thread Starter bmg1227

    (@bmg1227)

    That’s because I put it back to the way I had it before, b/c I was getting frustrated I couldn’t get it to work. Note that the logo doesn’t link.

    awhhh I’m sorry – I didn’t check that. 🙁

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Header – Need Help!!!’ is closed to new replies.