Is there a way to fix the footer to the bottom of the page?
Some of my pages have very little content and my footer is halfway up the page, I just want it to stay as a thin section across the bottom.
Thanks in advance
Hey!
Try adding this code to the Quick CSS:
.container_wrap .container{
min-height: 600px;
}
Cheers!
Josue
Hi,
That code affected the header and not the footer?
Hi!
Please try adding following code to Quick CSS
#footer {
position: fixed;
width: 100%;
bottom: 0px;
}
Best regards,
Yigit
Hi Extreme delay in getting this done.
The above hasn’t worked.
You can see the issue here: http://schuttiesfasteners.com.au/catalogue/
Hi!
Use this code:
#main .content{
min-height: 600px;
}
Regards,
Josue
Hi,
This places the footer past the bottom of my screen. I would like the footer to stay attached to the bottom of my screen at all times, also to cater for the different screen resolutions of my customers.
Try with this:
html{
background: white;
}
#socket {
position: fixed;
width: 100%;
bottom: 0px;
}
That worked a treat, thanks for the amazing support!
You are welcome, glad to help :)
Regards,
Josue