Looking for solutions as to how to add a Media query for a custom HTML section on my sites Home Page.
The Custom CSS editor box does not support “@media” code and I am unsure of where to add this code to the Liquid files if that is something that I need to do.
This is the kind of css I wanted to add but isn’t accepted:
@media screen and (max-width: 800px){
.mobile-worm img{
display:block;
}
.worm img{
display: none;
}
}