Archived topic
Centering Logo on Mobile Only
6 replies · Started by hichb on May 22, 2019
Viewing posts 1–7 of 7
Hello,
I'm trying to center the Logo on mobile only. I used this code but doesn't work for me:
@media (max-width: 768px) {
.inside-header {
text-align: center;
}
}
Thanks in advance for your help!
Hi there,
Try this CSS:
@media (max-width: 768px) {
#site-navigation .navigation-branding {
margin: auto;
}
}
Let me know :)
Tried but doesn't work. :)
Sorry it works only for tablet with 768px and after when it's less it goes back to the left :)
Try this CSS:
@media (max-width: 768px) {
.main-navigation.has-branding .inside-navigation {
justify-content: center;
}
.site-logo.mobile-header-logo {
margin-left: auto;
margin-right: auto;
}
}
Bravo (clap clap) You guys are really good in CSS! :)
Awesome - You flatter us :)
This archived topic is closed to new replies.