hey eyerybody.
how can i get the hamburger menu to the left and the logo in center?
thx alot!
Markus
Hi Markus,
Can you give us the link to your site? and also is it for mobile only?
Best regards,
Nikko
hey nikko.
the site isn’t online right now.
what i want to do:
desktop version: hamburger menu on the left side (dropdown also on the left), logo in center position.
mobile version: hamburger menu on the left and logo on the right.
greeds,
markus
Hi 48GRAD,
Please upload screenshots to a service like Dropbox or http://imgur.com and give us the links here. We cannot see anything you posted above.
Best regards,
Victoria
i just posted a text, no links..
find the screenshots attached.
——-
what i want to do:
desktop version: hamburger menu on the left side (dropdown also on the left), logo in center position.
mobile version: hamburger menu on the left and logo on the right.
——-
Hi 48GRAD,
Can you try adding this code:
@media only screen and (min-width:959px) {
#top #header .logo {
right: 50%;
transform: translateX(50%);
}
}
Let us know if it helps.
Best regards,
Nikko
Unfortunately it doesn’t work.
Find the Screenshot attached.
Greeds,
Markus
Hi Markus,
Can you try using this CSS code instead:
@media only screen and (min-width:959px) {
#top #header .logo {
left: 50%;
transform: translateX(-50%);
}
}
Best regards,
Nikko