Tagged: x
-
AuthorPosts
-
April 5, 2016 at 2:42 pm #868101
I want to remove the vertical scroll bar entirely. Other themes have given this option without requiring additional CSS.
I’ve searched the web extensively, and I’ve found two CSS “solutions” for removing the vertical scrollbar, but neither worked for me.
Thoughts?
(My site is in Maintenance Mode, so I did not share a link. This seems like a solution that should be simple enough without needing a link.)
Thanks,
J.April 5, 2016 at 9:54 pm #868516Hi J,
Thanks for writing in! We ask for a link so we can do some checking if we need to. In your case, you mentioned that you have already tried two CSS solutions but it did not work. We also are not sure which scroll bar you are referring to as scroll bars can appear in different places.
If it is the main vertical scroll-bar you can try the following CSS. You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.
body::-webkit-scrollbar { display: none; }
or this:
html {width:100%; height:100%; overflow:hidden; }
If that doesn’t help, would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:
– Link to your site
– WordPress Admin username / password
– FTP credentialsDon’t forget to select Set as private reply. This ensures your information is only visible to our staff.
-
AuthorPosts