cancel
Showing results for 
Search instead for 
Did you mean: 

Do not show banner on mobile phone

Do not show banner on mobile phone

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,

3 REPLIES 3

Re: Do not show banner on mobile phone

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;
  }
}

Re: Do not show banner on mobile phone

Thanks, but I do not really now the position of the banner, can I not define via image name?

Re: Do not show banner on mobile phone

You can play with the CSS and define your own class, etc.