Log in

View Full Version : horizontal scrollbar/ page alignment question



Rosalie
04-14-2011, 08:18 PM
Dear all,

I have a question and I hope you can help me with it.
I made this page and it looks like it should however, a horizontal scrollbar is shown while this is not needed at all. You are now able to scroll to the right where additional white space is shown while I don't want this.

Does anyone knows why this scrollbar shows up and how to remove it?

Thank you very much in advance,

Rosalie

davelf
04-15-2011, 02:50 AM
Change this line of code:


ul#navBar2{
width: 800px;
height: 33px;
margin: 0px 0px 0px 57px;
list-style: none;
}


it's on navbar2.css

the horizontal bar shows because you push it to much at the margin -left side. But you still use the full width: 950px.
Just change the width to 800, and it solved

Good luck...

Rosalie
04-15-2011, 12:53 PM
it's on navbar2.css

the horizontal bar shows because you push it to much at the margin -left side. But you still use the full width: 950px.
Just change the width to 800, and it solved

Good luck...

Thank you very much, I didn't see that. It is indeed solved now!