Hello,
I removed the container padding to let the easy slider stretch to the edges of the color section.
.container {
padding: 0;
}
This works great, but not for smaller screen sizes. What can I do?
Hey fabienneBESD,
I couldn’t find the page with the easy slider to see the issue, but if the above code works good for you, except for small mobile screens, then change the code to this:
@media only screen and (min-width: 767px) {
.container {
padding: 0;
}
}
Best regards,
Mike
Thank you, but this doesnt work. On small screens there is still a padding.
Hi,
Try this code in the General Styling > Quick CSS field:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .container {
width: 100% !important;
max-width: 100% !important;
}
}
Best regards,
Mike
Thx, that did it.
How would I get the font on the easy slider to also size down on smaller screens?