I’ve set me layer slider to hide when screen width is less than 600px.
However I need to replace it with an element or the site loses impact.
I’ve used a color section to try to create element id’s for a video which I can show instead and then used @media max-width in the general styling css section to try to show it when the slider is hidden.
it doesn’t work well.
Any ideas?
Hi Catalaioch!
You forgot the link to your page.
The CSS your looking for is probably this.
#id_of_section { display: none; }
@media screen and (max-width:600px) {
#id_of_section { display: block !important; }
}
Best regards,
Elliott
Hi!
You had a typo in your CSS. It should be working now.
Regards,
Elliott