Hi, on my site: http://www.ivotepolls.com, as you notice the horizontal scrollbar is very wide, I looked through my html and css and could not find the problem. Anyone know where the problem is?
I'm not seeing any horizontal scrolling in Chrome (Mac).. My suggestion either way is to add this to your CSS. body { width: 99%; } If that doesn't fix it, also try adding html { width: 99%; } Chuckun
This is very strange because my friend and I have the horizontal scrolling issue. My resolution is: 1280 by 800.
I seem to have the issue but still can't locate it via code. This only occurs when the user is logged in.
Narrowed the problem down to the sidebar, and as previously mentioned it is a problem when your logged in only, it seems the Activity widget is the problem causer, because when I remove it the scroll bar disappears.
Without going through all the sign up process and routing through all the code, check what width: property you have in your CSS files for that section then and maybe there in may lie the problem
Found the issue in the code. Fixed it. The problem occured with a hidden text field where visibility was hidden with absolute when it should be fixed. Thanks for your help.
but then doesn't the absolute take positioning from the viewport? so how does that affect the scroll??
position: absolute; visibility: hidden changed to position: fixed; visibility: hidden, took away the scrolling issue. Not sure exactly how but it worked. I believe that the issue occurred as the position of the hidden text-field was shown on the right side causing the scrolling.