Urgent question: I've launched this site, and one thing you'll notice is that I overrode the logo size in order for it to be bigger. This looks fine on the desktop, but on the phone it is too big and takes over the mobile menu so it is not visible. Is there a way to make the logo size responsive? I did already try playing with z-indexes, with no luck. Thanks!
Hi there,
Urgent question: I've launched this site, and one thing you'll notice is that I overrode the logo size in order for it to be bigger. This looks fine on the desktop, but on the phone it is too big and takes over the mobile menu so it is not visible. Is there a way to make the logo size responsive? I did already try playing with z-indexes, with no luck. Thanks!
Hi there
A solution i8s to add sizes for your logo in responsive media query points
@media only screen and (max-width: 479px){
#logo{
height: ....;
width: ....;
}
}
also for @media only screen and (max-width: 767px)
thanks
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
in theme options Styling Options -> Custom CSS
thanks
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy
Thanks very much that did work!