Title: Disable scrollbar
Last modified: March 15, 2023

---

# Disable scrollbar

 *  [lenavigateur](https://wordpress.org/support/users/lenavigateur/)
 * (@lenavigateur)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/disable-scrollbar/)
 * 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](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fdisable-scrollbar%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [Shahin](https://wordpress.org/support/users/skalanter/)
 * (@skalanter)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/disable-scrollbar/#post-16564727)
 * Hello [@lenavigateur](https://wordpress.org/support/users/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](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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/oceanwp/4.1.5/screenshot.png)
 * OceanWP
 * [Support Threads](https://wordpress.org/support/theme/oceanwp/)
 * [Active Topics](https://wordpress.org/support/theme/oceanwp/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/oceanwp/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/oceanwp/reviews/)

## Tags

 * [overflow](https://wordpress.org/support/topic-tag/overflow/)

 * 1 reply
 * 2 participants
 * Last reply from: [Shahin](https://wordpress.org/support/users/skalanter/)
 * Last activity: [3 years, 1 month ago](https://wordpress.org/support/topic/disable-scrollbar/#post-16564727)
 * Status: not resolved