• Resolved jfranko

    (@jfranko)


    Hi!

    I need help and I hope someone can solve my problem.

    I used this snippet to change the menu to display child pages on hover. Everything with the snippet worked fine.

    But now my problem is the the child pages of the child cover the other items. The pop up occurs under the child and I would like to have the pop up occur to the right – as the arrow of the initial pop-up would suggest. I hope this is understandable.

    the site: http://www.coldheartedcustomcycles.com/

    Thank you in advance.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Add this to the end of your child theme’s style.css file:

    .dropdown-submenu > .dropdown-menu {
       left: 100%;
       top: 1px;
    }

    Thread Starter jfranko

    (@jfranko)

    hmm… I added, but it did not change it. Any other thoughts?

    OK, there’s a syntax error in your child theme’s style.css file. At the very end, there’s this code:

    #main-wrapper .format-icon:before {content: none;}
        speak: none;
      text-transform: none;
      -webkit-font-smoothing: antialiased;
      padding-right: 10px;
      opacity: 0.2;
      position: relative;
      top: 8px;
      display: none;
      font: normal normal 1.2em/1 'entypo';
    }

    You have to take out the extra right brace on the top line, at the end of conent: none; }. That extra right brace is causing the CSS that follows not to work, which is why when you copied in my CSS rule, it didn’t work.

    Thread Starter jfranko

    (@jfranko)

    AWESOME!

    Thanks so much! It worked!

    As an aside, after the code didn’t work, I pulled it back out. I don’t know much about coding so I didn’t know if I should leave it or not.

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

The topic ‘Problems with menu items’ is closed to new replies.