Change the menu CSS

  • Unknown's avatar

    Hi,
    First,I would like to change the CSS of my menu because I am using Goran and the menu is on the Right side of the website but I want it on the middle.
    Second, I have one category on my menu that have a submenu and with Goran there is a button, how can I remove this button?
    Third, I would like to put the logo of my website on the left side of the site, for the moment it is at the middle. But I don’t want it to be on the left side of the page on my static font page.
    Hope you can help me

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello,

    Your website is invite only, so I cannot see anything to help you out.

    Thanks.

  • Unknown's avatar
  • Unknown's avatar

    Hello,

    CSS to bring logo on the left

    .site-branding {
        float: left;}

    Presently you have hidden the theme menu, may I ask why?

  • Unknown's avatar

    The menu is not hide, you have to click on one of the two flag to see it appears.
    The CSS you give me function but it put the logo on the left even on the landing page, but on the landing page I want it to be on the center

  • Unknown's avatar

    Hi @rgw2011, to center the menu, add the following to your custom CSS.

    @media screen and (min-width: 1020px) {
    	.main-navigation {
    		width: 100%;
    		text-align: center;
    		margin-right: 0;
    	}
    	.main-navigation ul {
    		display: inline-block;
    	}
    	.menu-primary li:last-child {
    		margin-right: 0;
    	}
    }
  • The topic ‘Change the menu CSS’ is closed to new replies.