Forums

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

Home Forums CSS CSS nav works in FIREFOX but NO OTHERS

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #200386
    mindvassal
    Participant

    Hello, all! After much browsing the site I am finally making my first post (of many I hope) as this seems like a great community to learn from and to help others. So, on to my first question:

    I was coding a website previewing in Firefox (which works fine) but in Chrome or Safari I’m having an issue. When you hover over the top banner you’re supposed to be able to click the links that pop-up below, but instead they disappear before you’re able to mouse over them.

    Here is my code and I appreciate in advance any help provided!
    http://codepen.io/mindvassal/pen/ZYgWGp

    #200394
    Shikkediel
    Participant

    Seems to work better if this is changed :

    nav ul li:hover ul {
    display: block;
    
    ...
    
    }
    

    To this :

    nav:hover ul {
    display: block;
    
    ...
    
    }
    
    #200417
    mindvassal
    Participant

    That works! If you don’t mind my asking, what was your process in debugging?

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