Hi,
I would like to use the following to move the logo to the right:
.av-logo-container {
width: 1310px !important;
max-width: 1310px !important;
}
However, now the mobile menu disappears. How can I move the logo to the right without affecting the mobile menu?
Hey FlatText,
Can you give us a link to your site? so we can take a closer look.
Best regards,
Nikko
Hi Nikko,
Link in private content.
I’ve done it like this now, which might be a temporary solution:
.av-logo-container {
width: 1310px!important;
max-width: 1310px;
}
@media only screen and (max-width: 767px) {
.av-logo-container {
width: auto;
max-width: auto;
}
}
Hi,
Thanks for sharing that, does the CSS work as you intended? If so I would recommend that you go for that solution.
Best regards,
Rikard
Hi Rikard,
Yes it works. One more question, what’s the best way to bring the top-right ‘Login | Register’ links closer to the left?