• Resolved TonyWilliams

    (@tonywilliams)


    I’m using childishly simple (and it is, well done!) and I’m putting my menus down the left hand sidebar. This means that I don’t want the horizontal menu at the top of the page under the header image. How can I get rid of it?
    Thanks
    Tony

Viewing 9 replies - 1 through 9 (of 9 total)
  • In your WordPress admin dashboard, under the menu “Appearance” click on “Menus”, and if you have any elements on your menu just remove them. The menu won’t appear on your site if it does not contain any elements.

    Thread Starter TonyWilliams

    (@tonywilliams)

    Great that worked! But how do I raise the centre text element to the top now?
    Thanks
    Tony

    Theme Author richarduk

    (@richarduk)

    What do you mean by the centre text element? If you post a link I might be able to help.

    I think he means the main content area. I’ve been trying to figure out how to move it up myself. I want less space between the top menu and the main content area – any help would be appreciated!

    Thread Starter TonyWilliams

    (@tonywilliams)

    @cdrawdy13 yes that’s exactly what I mean! Glad to know you want to do the same. Let’s hope someone comes up with the answer.

    Meanwhile here’s a link to my extremely rough test site which I’m using to explore the possibilities of this theme.
    https://www.wordpresstest.thecapitalpartnership.co.uk/

    Theme Author richarduk

    (@richarduk)

    Gotcha. Try this:

    div.header-container {display:none;}

    and this if you want to adjust the height:

    div.header-container {min-height:0;height:10px;}

    and if you want it on a specific page only then view source and look for the body element. Find a class in that body element that applies only to that page and put it in front. So for a body with following classes:

    <body class="home page page-id-72 page-template-default custom-background three_col_cont_middle gecko"> 
    
    body.page-id-72 div.header-container {display:none;}
    
    body.page-id-72 div.header-container {min-height:0;height:10px;}

    or I could have used the class home

    Thread Starter TonyWilliams

    (@tonywilliams)

    @richarduk Sorry Richard I’m new to this where would that statement go? I’m using a child theme!
    Thanks
    Tony

    Theme Author richarduk

    (@richarduk)

    @tonywilliams see my updated reply above ‘cos posts crossed.

    Makes no diff if using child theme, put in top options box either:

    ‘Add CSS, javascript or shortcode in the head element of all pages of your website’

    or if it’s only for the home page

    ‘Add CSS, javascript or shortcode in the head element of the home page only’

    it’ll look like this:

    <style type="text/css">
    div.header-container {display:none;}
    </style>
    Thread Starter TonyWilliams

    (@tonywilliams)

    Great thanks that worked great!
    Tony

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘can I remove horizontal menu at the top?’ is closed to new replies.