Sachin
Sachin

Reputation: 2148

Fix horizontal scrollbar for internet explorer 7 browser

I don't know why the horizontal scroll appears for this site in ie7.
This works very well in all other browsers. Not able to figure why exactly this happens. Please help me to solve this problem.

Thanks in advance

http://d9692994.u118.c6.ixwebhosting.com/vishal-enterprise/website/

Upvotes: 0

Views: 189

Answers (2)

Ani
Ani

Reputation: 4523

you are missing jquery library. check your console errors. you need to call jquery library before all js file.

Try this in your css:

html{
  overflow-x: hidden;
}
body{
 overflow-y: scroll;
 overflow-x: hidden;
}

Upvotes: 2

Atrox111
Atrox111

Reputation: 527

What about adding some style to your body?

body {
     overflow-x: hidden;
}

I haven't tested yet but this should work.

Upvotes: 0

Related Questions