Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Menu too high in IE9, Chrome and Safari

  • This topic is empty.
Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #36567
    aself
    Participant

    It’s working in Firefox and IE8 though. It’s about 5px too high in the others. Really trying to learn CSS better, but also need to deliver this site asap. Any help would be greatly appreciated!

    My url is http://www.selfmadex.com/clevercreations/

    Thanks!

    #96446
    timmey
    Member

    one way could be to use absolute positioning


    #menu {
    background: none repeat scroll 0 0 transparent;
    position: absolute;
    right: 55px;
    top: 43px;
    }

    #96451
    Paulie_D
    Member

    Do you mean the whole menu or just the text?

    I think you probably mean the latter and want the text centre vertically…that’s usually a case of setting an appropriate line height.

    #96459
    aself
    Participant

    Wonderful timmey, it worked! Are there any drawbacks to absolute positioning? It seems like I’ve tried to avoid it in the past.

    I’m still way off in IE7 – any thoughts?

    Thanks!

    #96629
    aself
    Participant

    I still haven’t been able to figure this out. I appreciate anyone’s skill in this matter!

    #96657
    noahgelman
    Participant

    Move the Position absolute and the top and right values from #menu to #menu-content

    #96711
    aself
    Participant

    Thank you for responding. That was a great suggestion but now the menu isn’t visible at all in IE7 although it’s still perfectly positioned in Firefox, Chrome, IE8 & 9. Do you know of anything else I can try. I really appreciate your help!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The forum ‘CSS’ is closed to new topics and replies.