How to remove tag-cloud from mobile
Any one able to assist? I would like to leave out the tagcloud on mobile, so in my child-theme (I do have other specific coding for mobile users, that works fine indeed), I added:
@media screen and (max-width: 600px)
{
div#tagcloud
{
display: none;
}
}
But I doesn't work (cache are cleared). What do I miss?