Can you please provide me some quick css that I can adjust that will allow me to move the text of the menu items down please so it’s not as close to the logo? Thanks!
Hi djshortkut!
Please find following code in your custom CSS
@media only screen and (max-width: 767px) {
ul#mobile-advanced {
padding-top: 0;
margin-top: 85px;
}}
and adjust margin-top value as needed
Best regards,
Yigit
Thanks Yigit. I’ve already tried that and it sort of works but it moves the black background of the mobile menu down so there is a gap between the header and the mobile menu where you can see the page behind it. I was wondering if there is a way just to move the text down with quick css. Maybe add some padding to the black background of the mobile menu? Thanks!
Hey!
try this instead:
#mobile-advanced li {
top: 35px;
}
Best regards,
Andy
Just what I was looking for, thanks! You can close this thread.