Logo

dev-resources.site

for different kinds of informations.

Footer bottom in GastbyJS

Published at
6/21/2020
Categories
gatsby
webdev
footer
beginners
Author
chrissiemhrk
Categories
4 categories in total
gatsby
open
webdev
open
footer
open
beginners
open
Author
12 person written this
chrissiemhrk
open
Footer bottom in GastbyJS

I have been building my portfolio website and choose Gatsby. One problem that I encountered early on was making my footer stick at the bottom of the page. In this article, I'll be sharing how I overcame it.

Note: I used the starter kit Gatsby-starter-default as a starting point.

<div className="site-content">
   <Header siteTitle={data.site.siteMetadata.title} />
   <main>{children}</main>
   <footer>
      ยฉ {new Date().getFullYear()}, Built with
     {` `}
     <a href="https://www.gatsbyjs.org">Gatsby</a>
   </footer>
 </div>
Enter fullscreen mode Exit fullscreen mode

First, in the layout.js file found in the component folder, wrap the header, main, and footer element in a div and give it a class. The class name doesn't matter.

.site-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}
Enter fullscreen mode Exit fullscreen mode

Then in the layout.css file found in the same folder, write the following code. This will make your footer stick to the bottom of your page.

Featured ones: