Hello!
I would like to fix the footer in the bottom of the windows so when someone is watching the site, the footer always shows even when they scroll. I know that I can do this with the ccs but i'm not very sure of what to modify.

thank you

CommentFileSizeAuthor
#2 Sin título-1.jpg121.31 KBAnonymous (not verified)

Comments

shadcn’s picture

Status: Active » Fixed

Use a fixed position for #footer.

#footer {
    position: fixed;
}
Anonymous’s picture

StatusFileSize
new121.31 KB

I used this because the position:fixed made my footer dissapear.

#footer {
bottom:0px;
height:30;
right:0%;
left:0%;
position:fixed!important;
position:absolute;
width=100%;
top:expression((0-(footer.offsetHeight)+
(document.documentElement.clientHeight?
document.documentElement.clientHeight:
document.body.clientHeight)+(ignoreMe=document.documentElement.scrollTop?
document.documentElement.scrollTop:document.
body.scrollTop))+'px');
text-align:center;
visibility:visible;

But now the blocks in the footer all left aligned and I want them in the center. Any ideas? Here's a pic if it helps in anything

Anonymous’s picture

Status: Fixed » Active
Anonymous’s picture

Status: Active » Closed (fixed)