Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Charles Cormier

    (@charlescormier)

    Hi @bigwavemaui,

    If you want to hide all parallax block in mobile view, add this code in custom css area.
    @media (max-width: 576px) {
    .wp-block-psb-parallax{
    display: none;
    }
    }

    Or if you want to hide specific block, follow the steps.
    1. In every block, you will see id like (psbParallaxSection-{id}), copy the id.
    2. Add this code in custom css area. Before paste replace psbParallaxSection-{id} with your copied id name.
    @media (max-width: 576px) {
    #psbParallaxSection-{id}{
    display: none;
    }
    }

    Thread Starter bigwavemaui

    (@bigwavemaui)

    Thank you – that works!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘mobile behavior’ is closed to new replies.