Support
Support » Theme: OnePress » Set footer on bottom on page with little content.
(@compumec)
2 months, 1 week ago
My problem is on pages that have little content the footer rides up the page looking odd.
I would like all display sizes to set footer on bottom on page.
The page I need help with: [log in to see the link]
(@longnguyen)
Hi,
The footer displays after the main content so you have to add more content to push the footer to the bottom or use this CSS code in Appearance > Customize > Additional CSS to make the footer stick at the bottom.
.site-footer { position: fixed; width: 100%; bottom: 0; z-index: 99; }
Thank you!