Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #49226

    My website that I am working on is 1stattackengineering.com

    1.Drop Down Menu:I want to hide/ disable/ remove the drop down menu. I had the drop down menu hidden until I upgraded to pro and now I can’t find where to hide it in CSS.

    2. I was talking with someone through the support email about customizing the white area that the content is in so the it was in line with the edges of the menu bar. It worked great on the home page but on the regular pages it made them to narrow. Here is the code I used:
    body.page,
    body.page.custom-background {
    background-color: #000;
    }
    #header,
    #header .bottom-bg {
    border-bottom: none;
    }
    #main {
    background-color: #fff;
    }

    #49248
    Sakin
    Keymaster

    Hello ,

    1. I don’t get it what you mean. You can remove your drop down items from your custom menus directly. You can go to “Appearance => Menus” and edit your custom menu items.
    But if you just want to hide the drop down of the menu then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #access ul li ul {
        display: none !important;
    }

    But if you totally want to hide your menu, then add the following css instead:

    #access {
        display: none;
    }

    2. The layout narrow in not from the css that you have added but it’s from the layout option that you have select. So, please go to “Appearance => Theme Options => Layout Options” and check your “Default Layout”, it should be set to “Left Sidebar” or if you don’t want sidebar then it should be set to “No Sidebar, Full Width”

    #49275

    Both worked great!!! Thank you for responding so quickly!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Hide Drop Down Menu, Body Width’ is closed to new replies.