Viewing 3 reply threads
You must be logged in to reply to this topic.
https://jakubisin.net/wordpress1/
Logo/header looks good on the des top, but it is cut off and not centered on mobile devices, what can I do to fix, specific code?
also the drop down menu sits over the logo on mobile too, that also needs fixed, inder maybe?
Hello,
This happened because of the big logo size. Add this code into your Custom Css box in General menu:
@media (max-width: 480px){
#logo {
left: 62px !important;
}
.mobile_small_menu {
margin-left: -52px !important;
}}
Result: https://ibb.co/jRXSb3T
Best regards!
This is great, what if I wanted the nav options centered under the logo…. (just for mobile)
Hello,
Then add margin-top
to .mobile_small_menu
. Change the value until you are satisfied with the result.
Please keep in mind that personal customizations are not included in support.
Best regards!
You must be logged in to reply to this topic.