I’m using this CSS for my sticky header. Is there something similair if I want the footer to be sticky as well?
.html_header_top.html_header_sticky #header {
position: fixed !important;
}
Hey!
Try adding this code to the Quick CSS:
#footer {
position: fixed;
width: 100%;
bottom: 0;
z-index: 10000;
}
Also please update the theme to the latest version (3.0.8).
Cheers!
Josue
Beautiful! Thanks Josue