I had been trying to hide an element with CSS, without success I have this code:
@media only screen and (max-width: 1180px)
.element {display:none!important;}
}
I'm trying to instead of being 1180px it will be width 60%
@media only screen and (max-width: 60%)
.element {display:none!important;}
}
i had being trying to make it work, but i had being a few days and i just give up and decide to loop for help on the community, i know I'm missing something...