• Resolved martin177

    (@martin177)


    Hi!

    Is there a way to prevent overflow scrolling on this particular page only and in desktop mode only?

    Thank you very much in advance!!

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @martin177,

    There are two ways. The first one will lock the scrolling – freezing the page, and this CSS is not our advice, also it just works on your device height:

    body.page-id-1285 {
        height: 100vh;
        overflow: hidden;
    }

    The second one will hide the scrollbar only on this page:

    body.page-id-1285::-webkit-scrollbar {
        width: 0 !important;
    }

    Best Regards

    Thread Starter martin177

    (@martin177)

    Thank you so much again! Option 2 works like a charm.

    Have a wonderful day!
    Martin

    You’re most welcome, I’m glad we could help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘prevent overflow scrolling?’ is closed to new replies.