Menu alignment

Hi,

In this demo

http://themes.muffingroup.com/be/store/

How to get menu to be aligned center below the logo?

Comments

  • Hi,

    this is impossible because there is cart and search on the right side in the same line as menu.
  • And if I remove that cart and search?
  • We found the way how to center it even with additional stuff on the right. This can be done with below css:
    #Top_bar:not(.is-sticky) .menu > li {
        float: none;
        display: inline-block;
    }

    #Top_bar:not(.is-sticky) .menu_wrapper {
        width: 100%;
        text-align: center;
    }

    #Header .top_bar_left, .header-classic #Top_bar:not(.is-sticky), .header-plain #Top_bar:not(.is-sticky), .header-stack #Top_bar:not(.is-sticky), .header-split #Top_bar:not(.is-sticky), .header-fixed #Top_bar:not(.is-sticky), .header-below #Top_bar:not(.is-sticky), #Header_creative, #Top_bar:not(.is-sticky) #menu {
        background-color: transparent;
    }

    #Top_bar.is-sticky { background-color: #FFF !important; }
  • Wow, you guys are amazing :-D
  • One more thing. I remember there was option in previous version to add header image. I can't see it now.

    How to make full width header in black

    http://prntscr.com/8kci9r

    See here on image, I would like all this which is selected to be filled with black color.
  • To set header image, you must set "Featured image" which is on the right side while editing/creating pages. But not sure how you want to fill header with black background. Logo is black as well so you will lose the logo.
  • Yes logo is black but I will make it white and I just want whole header, from the top to the start of menu, to be black in full width.
  • You see how it's looking now

    http://vizionhosting.co.uk/

    I want it like this if it is possible?

    http://prntscr.com/8kllzm
  • I have set featured image to be black image but nothing happens. My header is still in white.
  • Ok. You can do something like that with below css:
    .header-stack #Top_bar:not(.is-sticky) .logo {
        background: #000 !important;
        margin-left: -25%;
        width: 150%;
    }
  • OK perfect.

    Just tell me now how to make that menu icon on responsive white?

    Also that menu icon is next to logo on the right side.

    Is there any chance to move it centered below logo?

    Between logo and start of content?
  • To change responsive icon color, please use below css:
    #Header a.responsive-menu-toggle { color: #FFF !important; }
    But to move icon below the logo, you must play with below css:
    @media only screen and (max-width: 479px) {
        #Header a.responsive-menu-toggle {
            right: 105px !important;
            top: 90px !important;
        }
    }
  • Wow this is great.

    I have put 200px from the top and it is great. I will just consider if I want to do that or make color of menu icon white :-)

    This is awesome support!!!!!!!
  • Hi Muffin group, I have read your comments above but still have a question:  Is it also possible to get the website logo at the left and the menu button at the right of the header?
    Only on mobile divices. 
    I don't want the menu icon to be sticky, it just has to be less close to the logo.

    Is this possible?
  • @Jelleopdenakker At this moment, we do not have such header type unfortunately.
Sign In or Register to comment.