• Hello,

    I am using the latest version of wordpress and the 2014 theme. If you scroll down the listed menu items in the top navigation menu, you will see a white backgroun/border. I am trying to get rid of this, but cannot figure it out in CSS. I tried setting background to transparent, but that didn’t work.

    Any help would be much appreciated.

    My site is http://www.jimmyesl.com

Viewing 1 replies (of 1 total)
  • Since you already have a custom CSS plugin, try this:

    .primary-navigation ul ul {
    	background: transparent;
    }

    And on line 554, where you have:

    .primary-navigation li li {
        border: 0;
        display: block;
        height: auto;
        line-height: 1.0909090909;
        background-color: #fff
    }

    Try changing the last line to background-color: transparent;.

Viewing 1 replies (of 1 total)
  • The topic ‘I can't get rid of white background in navigation menu’ is closed to new replies.