Hi,
How do I make our logo responsive to screen size? Our menu headers get smooshed into the image on certain browsers. Please see below:
<img src=”file:///Users/doughorner/Library/Containers/com.apple.mail/Data/Library/Mail%20Downloads/C1542D8B-89A7-4AFA-ACC7-515208E172C0/Screen%20Shot%202020-11-25%20at%202.40.50%20PM.png” alt=”BROWSER: CHROME CHROME Version 87.0.4280.67 (Official Build) (x86_64)
WINDOW WIDTH RANGE: starting at 992px until ~1150px width is where it overlaps” />
Hey MyMedicalShopper,
We can’t see the screenshot you tried to post, please upload it to a service like Dropbox or Google drive, then link to it here. Also post a link to where we can see the actual problem.
Best regards,
Rikard
Hi,
Please see the screenshots below at the link here:
Another image for reference:
Hi,
Thanks for that, but the folder you linked to is not shared publicly. Please post screenshots which we can actually access, and a link to where we can see the actual problem.
Best regards,
Rikard
I don’t appreciate the tone…or the delayed responses…
Hi,
The screenshots you posted are still not working. Could you simply share the URLs in private maybe? I asked for a link to your site as well, you still haven’t posted that either.
Best regards,
Rikard
Please see below. The issue happens when you decrease the screen width inward.
Hi,
Thanks for that. Please try this in Quick CSS in order to activate the mobile menu at an earlier point:
@media only screen and (max-width: 1180px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Best regards,
Rikard
Thanks. Can you clarify where I should place this CSS code on the back end in WordPress?