Put the element you want to hide into a div with an id=”something”
in css use:
@media screen and (max-width: 580px)
{
#something { display: none; }
}
Put the element you want to hide into a div with an id=”something”
in css use:
@media screen and (max-width: 580px)
{
#something { display: none; }
}