What CSS would I use to hide the color section tied to ID heroSpace for resolutions smaller than 375px?
Hi atrixdave!
Please try this:
@media only screen and (max-width: 375px) {
#heroSpace{
display:none !important;
}
}
Regards,
Rikard
Thanks Rikard….I’m checking the site on Screenfly and still see the heroSpace color section at resolutions lower than 375…
http://quirktools.com/screenfly/#u=http%3A//patriotenergy.com&w=320&h=568&a=37&s=1
Any ideas why?
Hey!
Could you provide us with a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Hi!
I think it’s because of the capital S. Try this:
@media only screen and (max-width: 375px) {
div#herospace {
display: none !important;
}}
Best regards,
Ismael
You were right Ismael! Thank you!