< All Topics
Print

Stick Footer to Bottom when Page Content is Less

Sometimes you may have pages on your site, that have few lines of text or very less content. In such cases, the footer displays below the content somewhere between the page. That does not give a nice look to the page.
You can stick the footer to the bottom so that no matter what your content length is, the footer will stick at the end of the page.
Option with Astra theme
Add the following filter to child theme’s style.css file.
				
					#page {
    display: flex;
    flex-direction: column;
	min-height: 100vh;
}
.admin-bar #page{
	min-height: calc(100vh - 32px);
}
#page .site-content{
    flex-grow: 1;
}
				
			
Tags: