• Resolved paulmgibson

    (@paulmgibson)


    Hello. I’m trying out this theme in the hope of using it for a major facelift of a busy website.

    However, I’ve uploaded two adverts, one in the header and one in a right hand sidebar using the widgets faciliy – however, the header ad is not displaying on the mobile version.

    Can anyone advise that this is possible?

    temp sire URL https://www.sussexdrone.co.uk

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi paul. Welcome to the Hueman forum. See if the information in this post helps.

    Your Header ad is hidden with the css property “display: hidden” for smaller devices.
    If you have any place to put some custom css you can fix this with the following css –

    @media only screen and (max-width: 1200px) {
        #header-ads {
            display:block;
        }
    }

    If that doesn’t work use !important suffix like that instead –
    display: block!important

    Thread Starter paulmgibson

    (@paulmgibson)

    Thanks – All worked.

    Solved.

    ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Ads not displaying on mobile version’ is closed to new replies.