Reputation: 3614
specifically for this page:
http://www.intimeahygieia.com/proizvodi/intimea-teen/
I would like it to not show scrollbar on buttom of the browser, like here:
http://www.intimeahygieia.com/proizvodi/intimea/
thanks
Upvotes: 0
Views: 240
Reputation: 67090
Add to the CSS style of the <div>
(or whatever you use) as background (the element with scrollbars) following CSS rules:
overflow-x: hidden;
overflow-y: auto;
Note that it can be applied to the <body>
element too (I guess this is your case).
Upvotes: 2