• Resolved jasminossman

    (@jasminossman)


    Hello,

    I have two problems and I would appreciate some help:

    I don’t like the menus at wordpress, because I have not much scope to customize it. Therefore I want to delete my menu completely. I tried to disable the header (Appearance -> Customize -> Header Options -> Very Top Bar -> disable section). But it didn’t work. I also tried to delete all menus (Appearance -> Customize -> Menus -> delete). Furthermore I tried to add CSS codes like:
    .x-navbar-inner {
    display: none;
    }
    or
    #site-header .header-navigation-wrapper, #site-header .mobile-nav-toggle {
    display: none;
    }
    I also tried to add the CSS code with Appearance -> Customize -> Additional CSS; and with Appearance -> Theme Editor, BUT NOTHING IS WORKING!

    Please help me, if you have another solution than those mentioned ahead.

    In addition, I would like to fix my self-made menu. I created a textbox and inserted links to make my own customized menu, but I don’t know how to fix it, when I scroll down (position: fixed). I named the text section(Elementor -> Advanced ->CSS ID) “menu”. I tried to fix the section by adding the CSS code:

    #menu{position: fixed;}

    But it didn’t work. Please help me. I am using the hestia theme.

    Thank you in advance!

    Kind regards,
    Ossman

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @jasminossman,

    I see that you have already added the second menu so you don’t need the default header at all and you can hide the whole header like this:

    .header {
     display: none;
    }

    To make your created menu sticky this would be the CSS that works:

    section#menu {
        position: fixed;
        z-index: 1;
        background-color: #fff;
        width: 100%;
        top: 0;
    }

    I hope it helps!

Viewing 1 replies (of 1 total)
  • The topic ‘remove menu and replace it with self-made menu’ is closed to new replies.