Hi all,
on my desktop version I will use an banner on footer, but if I add and save it, on mobile phone version its really to big and is not looking good.
How can I disable it for mobile version with normal editor?
Regards,
You can easily achieve this with CSS.
Here's an example on how you can do it:-
@media only screen and (max-width: 770px) { .footerbanner { display: none; } }
Thanks, but I do not really now the position of the banner, can I not define via image name?
You can play with the CSS and define your own class, etc.