Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #169434
    Stevieg
    Participant

    How do i get my menu items to centre on pages?

    Can I change the font/colour of the menu items?

    Is it possible to have menu as a sticky menu?

    #169451
    Skandha
    Participant

    @stevieg: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To center the menu */
    @media screen and (min-width:1024px) {
    	#site-header-menu {
    	   display: flex;
    	   display: -webkit-box;
    	   display: -moz-box;
    	   display: -ms-flexbox;
    	   display: -webkit-flex;
    	   justify-content: center;
    	}
    }
    /* To change the color of menu items */ 
    .navigation-classic .main-navigation ul ul a, .navigation-classic.absolute-header .main-navigation ul ul a, .navigation-classic.absolute-header .main-navigation a {
    	color:#123456 !important;
    }

    You can change the color according to your choice.
    You can use our Catch Sticky Menu Plugin to have a sticky menu. Let me know if you difficulty making the menu sticky.

    Let me know if this works out!
    Kind Regards,
    Skandha

    #169590
    Stevieg
    Participant

    LOL Sorry uploaded “Sticky” plug-in but the Menu is not “Sticky”

    Can I increase Font Size in Menu?

    #169627
    Skandha
    Participant

    @stevieg: Hello Stevie,
    To make you menu sticky using the plugin
    Go to => Dashboard => Catch Sticky Menu => Insert #masthead to Desktop Menu Selector and Mobile Menu Selector and Save Changes.
    Now your menu should stick at the top of the page.

    To increase font-size of menu items
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .main-navigation a, .main-navigation ul ul a {
    	font-size:22px !important;
    }

    You can change the font-size according to your requirement.
    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Adonis Free Version’ is closed to new replies.