• Hey guys,

    I’m very new in the field of working with wordpress. I’ve created a small one pager for an upcoming business. I’m using Sydney theme and want to remove the menu bar for tablet and mobile.

    What I’ve already tried is adding the following code too custom css:

    .menu {
    display:none;
    }
    .tinynav {
    display:none;
    }

    Any ideas how I can remove the menu?

    Best Daniel

Viewing 11 replies - 1 through 11 (of 11 total)
  • Hi Dan,

    There is no menu bar on tablet screen but a button menu https://prntscr.com/ccx82o

    And here is the CSS code to hide the button menu:

    .btn-menu {
        display: none !important;
    }

    Thread Starter vinecase

    (@vinecase)

    Yes that’s what i mean ?? The code works perfect.

    The menu is gone but now I have still the red background. Do you know how I can get rid of it too?

    red background? I didn’t see if there is a re background. Post your site URL please…

    Thread Starter vinecase

    (@vinecase)

    https://www.vinecase.de

    if you check for tablet and mobile there is the red background.

    I see, its flashed a while when the page scrolled.
    You can use this to make the background transparent:

    .site-header {
        background-color: transparent !important;
    }

    Or you can completely hide the site header using these:

    .site-header {
        display: none;
    }

    Thread Starter vinecase

    (@vinecase)

    nice. hiding the header is perfect ?? works perfect. thanks

    Thread Starter vinecase

    (@vinecase)

    Have you also an idea how to change the colors? Is it only possible with custom css or can I use the frontend?

    Hi,
    Which color? There is already color setting from the theme, thought? You can manage it from: Customize > colors.

    Hello,
    I have searched high and low on every single forum and can’t seem to find any way to remove the very top menu bar on my wordpress site. This is the link: https://markmaker.ca/index.php/social-media/

    I want to remove the menu bar on only a few pages. I added multiple custom CSS plugins and tried tons of different codes.

    The menu bar I am referring to is the one that says: home, work with us, FAQ….

    Please help!

    Hello @caitlynkeable,

    Please create a new topic for your question with more details about your issue in order to make it easier to help you.

    Kind Regards, Roman.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Remove menu bar’ is closed to new replies.