Site logo

Archived topic

GP Hooks - disable on mobile and tablet?

2 replies · Started by Craig on January 17, 2018

Viewing posts 1–3 of 3

Did a search, can't find anything on this, sorry if I missed a solution.

I have a slider sitting in my wp_head, is there a way to disable from showing on smartphone and tablet, via css?

Thanks, the hooks are a fantastic feature. thank you.

Craig

You can use media queries with CSS to hide the slider. You will need to know the sliders #ID or a one of its parent CSS Classes. And then add this CSS to the additional CSS in your customiser:

@media (max-width: 1024px) {
    .my-slider-class {
        display: none;
    }
}

I would advise that you don't put your slider in the wp_head, this is reserved from meta data, styles and scripts. Use the Before Header instead.

This archived topic is closed to new replies.