Hello,
I’ve researched this in the forums and codes provided to others have no effect on my site. The title says it all: on mobile devices, I’d like the logo to be centered at the top. Link provided
Any help is much appreciated, thanks
Hi entrepreneur41!
Add this to your custom CSS.
@media screen and (max-width: 767px) {
.logo {
left: 50% !important;
position: relative !important;
transform: translateX(-50%);
}
}
Best regards,
Elliott