Asfaq Tamim
Asfaq Tamim

Reputation: 5697

How can i remove this sidebar from my html page?

enter image description here

The image given below is screenshot of my JQuery-Mobile project. I got a sidebar which i want to remove.I have a div containing Scrolling table.

Upvotes: 1

Views: 11159

Answers (2)

Iswar
Iswar

Reputation: 1

Use a CSS attribute called ::-webkit-scrollbar. You can find many other things to play with this attribute. Here is a link to W3 School hope it can help you 'How TO - Custom Scrollbar'

Upvotes: 0

Aravin
Aravin

Reputation: 4108

Try this one

<style type="text/css">
  html {
    overflow-y: hidden;
  }
</style>

fiddle Demo

Upvotes: 6

Related Questions