• I tried to disable vertical scrollbar with “overflow: hidden;” on specific page ID but it doesn’t work.

    Thanks!

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

Viewing 1 replies (of 1 total)
  • Hello @lenavigateur,

    The overflow on a page is in the HTML tag, so you need to set the custom class to the HTML, like this: https://i.postimg.cc/tCNNtzxj/image.png.
    To achieve that, you need to write a simple JS like this jQuery:

    jQuery(document).ready(function () {
        'use strict';
    
        jQuery('.page-id-735').parents().addClass('page-id-735');
    
    });

    After that, use this CSS:

    .page-id-735 {
        overflow-y: hidden;
    }

    That’s all.

    I hope it helps,
    Best Regards

Viewing 1 replies (of 1 total)
  • The topic ‘Disable scrollbar’ is closed to new replies.