• I having issue with mobile ads with mobile views. How can I make the mobile ads show up only in mobile theme?

Viewing 1 replies (of 1 total)
  • Hi,

    You can try looking in your ads plugin to see if there is such an option.
    If not, you can use the unique text widget ID with some media query css to hide on desktop and show in mobile.

    The following example will hide your header ads on desktop and show in mobile.

    @media screen and (min-width:1024px){
    #text-791902687 {
        display: none !important;
    }
    }

    Thank you

Viewing 1 replies (of 1 total)
  • The topic ‘How can I display ads that only showing up at mobile theme?’ is closed to new replies.