Hello,
i would like to hide a picture in the right side bar (into a custom module) when i am looking at the webstite in a tmobile device or small tablet.
i intend to use the following css rule :
@media all and (max-device-width: 820px)
{
img { display: none; }
@media only screen and not (min-device-width: 360px)
{
img { display: none; }
}
but I can't find in which css file I must insert it.
thks for help.
pascal