• I’m using the custom background changer plugin on the internal pages of my siteand it’s great. Unfortunately, iPads don’t really accommodate fixed backgrounds, so can you advise how to disable Custom Backgrounds for tablets and mobiles?

    I’ve tried using CSS media query to override it, but I haven’t been able to do this.

    Can you advise, please?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi l3ttie;

    I was going through the same thing (or a bit similar) myself. I’ve included what has worked for my situation below for convenience:

    @media screen and (min-width:0px) and (max-width:720px) {
        .cbc-page {
            background-image: none !important;
        }
    }

    You can adjust the min/max-widths as you wish.

    Hope this helps – have a good day!

Viewing 1 replies (of 1 total)
  • The topic ‘How to disable for mobile devices which don’t support fixed backgrounds’ is closed to new replies.