why is homepage scrollable?
St Laurie
Registered Users Posts: 31 Big grins
Guys, I'm trying to work out why my homepage is scrollable:
http://lauriestreet.smugmug.com/
Here are my settings:
Layout - Stretchy
Fill Height - On
Top Margin - 0 px
Side Margins - 0 px
Bottom Margin - 0 px
Header, Body & Footer Width - Auto px
Left sidebar - On
Left sidebar width - 24 px
Right sidebar - On
Right sidebar width - 24 px
Section Pinned - Right
Any ideas?
Cheers
http://lauriestreet.smugmug.com/
Here are my settings:
Layout - Stretchy
Fill Height - On
Top Margin - 0 px
Side Margins - 0 px
Bottom Margin - 0 px
Header, Body & Footer Width - Auto px
Left sidebar - On
Left sidebar width - 24 px
Right sidebar - On
Right sidebar width - 24 px
Section Pinned - Right
Any ideas?
Cheers
0
Comments
body {
padding: 20px;
}
The padding it's adding to the top is throwing things off a bit. So if you add it like this instead:
body {
padding-bottom: 20px;
padding-left: 20px;
padding-right: 20px;
}
It'll work without scrolling.
Support Hero and Customeister
http://www.smugmug.com/help
I actually used your code
however was still scrollable so modified it to:
Appreciate you pointing it out though,
Cheers