Hi,
How can I make the stylesheet pick up an other background image in the “color section element” so that it is customized for tablets and mobile devices?
I need it to pick up a smaller version of the background image than shown on computers.
Kind regards,
Hey henrik51,
I think it would be easier if you created another section and upload an image better adapted for mobile screens, you can give your sections ID’s to hide/show them using CSS after that:
@media only screen and (max-width: 767px) {
#desktop-section {
display:none !important;
}
}
@media only screen and (min-width: 768px) {
#mobile-section {
display:none !important;
}
}
Thanks,
Rikard
Oh yes, thanks.
I also found out that I just use the “full width easy slider” instead of the “color section”. Then I won’t have to work with two images.
Thanks, anyway :-)