Support » Theme: LightWord » [Theme: Lightword] How to remove the menu?

Viewing 8 replies - 1 through 8 (of 8 total)
  • There are literally thousands of WordPress themes – which means that many people won’t be familiar with your particular theme. So a link to your site where people can see the theme might result in more responses.

    Thread Starter Peuchen

    (@peuchen)

    Thank you. Bananenblog is the site I’m working on. I would like to remove the grey menu bar (the one which now only contains a search form).

    The grey bar is a background image:

    #header {
        background: url("http://www.bananenblog.nl/wp-content/themes/lightword/images/content_top_no_rss.png") no-repeat;
    }

    Looks like it might be customisable via the theme’s options.

    Thread Starter Peuchen

    (@peuchen)

    It isn’t, unfortunately. I already tried to delete the image, but that didn’t work out.

    You can’t just remove the image. It’s also specified in lightword/original.css. So, you’d either need to replace it with something (perhaps a transparent image of the same dimensions?) or edit that CSS file to remove:

    #header {
        background: url("images/content_top.png") no-repeat;
    }

    Thread Starter Peuchen

    (@peuchen)

    Thanks! I’ve made content_top_no_rss.png a fully transparant image. Unfortunately, because of that, there’s a lot of space between the header and the content. Could you also help me with that?

    In your child theme or in your style.css file you can change line 41

    #header {
    height: 113px;
    }

    and reduce the height to what you want

    Thread Starter Peuchen

    (@peuchen)

    You’re awesome. Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘[Theme: Lightword] How to remove the menu?’ is closed to new replies.