forcing footer at bottom on mobile
hitched
Registered Users Posts: 18 Big grins
When I have just a background image my footer doesn't force down to bottom on my mobile 480px
Is there a way to CSS to force footer to display at bottom on mobile 480px?
Is there a way to CSS to force footer to display at bottom on mobile 480px?
Tagged:
0
Comments
Somebody else asked about that recently and I haven't been able to figure out how.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Hi - I have used this before - full screen home page. Try this css :
#sm-page-content > .sm-page-layout > .sm-page-layout-region-footer {
position: fixed;
width: 100%;
bottom: 0;
}
@media only screen and (max-width: 640px) {
sm-page-content > .sm-page-layout > .sm-page-layout-region-footer {
botttom: auto;
}
}
SmugMug Sites - Creative Examples
Favorite Images and SmugMug Designs
#sm-page-content > .sm-page-layout > .sm-page-layout-region-footer {
position: fixed;
width: 100%;
bottom: 0;
}
@media only screen and (max-width: 640px) {
sm-page-content > .sm-page-layout > .sm-page-layout-region-footer {
position: relative;
botttom: auto;
}
}
Is there really this with 3 t's? botttom: auto;
My Website index | My Blog