Kresimir Pendic
Kresimir Pendic

Reputation: 3614

how to make the bigger background not show scroll on page

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

Answers (1)

Adriano Repetti
Adriano Repetti

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

Related Questions