Tagged: custom.css
Hi,
The logo of our website when viewed on mobiles is too big and out of focus (not as sharp as the one on a computer).
How do we fix this? Already tried add this code in the custom css in the theme options:
@media only screen and (max-width: 767px) {
.responsive .logo a, .responsive .logo img { max-width: 100%; height: auto !important; }}
But the problem is that the site when viewed on a computer, the width becomes narrower to 910px from 1310px and it looks weird because of this.
Please fix this…
Regards,
Sumeru
Hi Sumeru!
Please add following code to Quick CSS
media only screen and (max-width: 480px) {
.responsive .logo a, .responsive .logo img { height: auto !important; margin-top: 5px!important; }}
and flush browser cache on your mobile device after applying the code
Best regards,
Yigit
Hey!
Please use this:
@media only screen and (max-width: 767px) {
.responsive .logo a, .responsive .logo img {
height: 65px !important;
max-height: 65px !important;
width: auto;
top: 3px;
}
}
Remove browser cache then reload the page a few times.
Regards,
Ismael