Center aligning logo on mobile

Hey guys,

Attempting to center align logo in navbar on mobile. Tried to add custom css but doesn’t seem to work for me…Was wondering if you could provide some code for me to try :smile:

Thanks!
Alec

Hi Alec,

Can you provide us your site url.
This is to ensure that we can provide you with a tailored answer to your situation.

For the mean time you can try this css code

@media (max-width: 979px) {
.x-navbar .x-brand.img {
    text-align: center;
    padding-right: 0;
    width: 100%;
}

.masthead-inline .x-btn-navbar {
    right:0;
    position: absolute;
}
}

Hope that helps

Ah, that worked perfectly! Thanks so much for that @paul.r - amazing support :smile:

You’re most welcome.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.