Hi there,
We have built a site using enfold and we are using a full width banner which looks great using a computer, but gets cut off significantly using the mobile view. How can we get it to show up correctly?
Thanks much
Darin
hello can I ask you how you have changed the header to put the whole picture?
Hi there. we put it In the logo area for Custom Background Image
Hi,
You can use this css code and put it in Quick CSS (located in Enfold > Styling):
@media only screen and (max-width:767px) {
.header_color .header_bg {
background-size: 100% auto;
}
}
however the problem is it won’t accommodate the space. I would probably recommend something like this instead:
@media only screen and (max-width:767px) {
.header_color .header_bg {
background-size: auto 100%;
background-position: -70px 0;
}
}
However the text in the image doesn’t fit also. I think we can use the 2nd code but replace the image with another one.
Best regards,
Nikko