- This topic has 1 reply, 2 voices, and was last updated 1 year, 10 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Hi. I have a problem with the logo in the header of the mobile version on my website – it is cut off on the sides.
It should automatically adjust the width to the device.
Maybe someone can help me how to solve it
Hi Cezary,
Please navigate to Dashboard > Appearance > Customize > Additional CSS section add the following snippet:
@media screen and (max-width: 979px) {
.entry-header {
height: 300px !important;
}
}
@media screen and (max-width: 774px) {
.entry-header {
height: 200px !important;
}
}
@media screen and (max-width: 514px) {
.entry-header {
height: 150px !important;
}
}
@media screen and (max-width: 382px) {
.entry-header {
height: 100px !important;
}
}
Kind Regards