Hi Kriesi-Team,
I want to centre the Logo and the Burger-Menu on the right side. On the Desktop-Version & iPad it is ok, but only on mobile (iphone) is the Logo position too much left, so that I see only the half oft it. Can you help me to solve this problem, because we want to go online as soon as possible.
Thx
Hey bk28832,
You have this CSS which is causing your problem:
#top #header_main .logo {
left: 50%;
margin-left: -130px;
}
I’m not sure exactly where the code is coming from since you have file compression active.
Best regards,
Rikard
Hi,
If you don’t want the code to apply to mobile screens then you can wrap it in a media query like so:
@media only screen and (min-width: 768px) {
#top #header_main .logo {
left: 50%;
margin-left: -130px;
}
}
Best regards,
Rikard
Hi Rikard,
it works! Thank you for your help.
Why is it not possible to have this in the main settings? I think many people use this to have a center logo and the burger menu on the right side?
Thx
Hi bk28832,
Well, the theme options do not have such settings, we are here to help make those changes with css in case those are needed.
Best regards,
Victoria