Comments Shirley started the conversationFebruary 6, 2014 at 10:50pmIs there a way to make the bottom footer thinner? Thanks!! Shirley repliedFebruary 7, 2014 at 11:04pmHere's how I fixed this: I used the Google Chrome developer tools in the browser menu to find what was connected to the footer area in the website. I changed the following: .container-wrap, .project-title { padding-bottom: 20px;}#footer-outer #copyright { padding: 10px 0px; font-size: 13px; background-color: #000000; border-top: 1px solid #666666; color: #777;} I also played with the color of the border and also the font size of the copyright. It changed the height from 70px to 50px. Sign in to reply ...
Here's how I fixed this:
I used the Google Chrome developer tools in the browser menu to find what was connected to the footer area in the website.
I changed the following:
.container-wrap, .project-title {
padding-bottom: 20px;
}
#footer-outer #copyright {
padding: 10px 0px;
font-size: 13px;
background-color: #000000;
border-top: 1px solid #666666;
color: #777;
}
I also played with the color of the border and also the font size of the copyright. It changed the height from 70px to 50px.