Site logo

Archived topic

Center Logo

7 replies · Started by Andy on July 21, 2019

Viewing posts 1–8 of 8

Hi,
I’m using the Navigation as Header option and want to center the logo on mobile. This sounds simple on paper but because it’s now using flexbox i’m unsure what CSS to use.

Any help much appreciated.
Thx!

Thanks Tom, it seems I only needed this bit of code from the guide:

.site-branding,
.site-logo {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: 200;
}

But I want the toggle to stay on the right not the left?.

Is that code active right now? I'm not seeing it on the site you shared.

Let me know :)

Sorry I was testing it locally first. I've now added it to the live site from 600px and below.

Try this CSS:

#mobile-header .menu-toggle {
    margin-left: auto;
}

Thanks didn't realise it would be that simple, also needed to add:

.navigation-branding, .site-logo.mobile-header-logo { margin-left:0; }

No problem - glad you got it working :)

This archived topic is closed to new replies.