Footer - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Footer

L

Lele

Helix Framework 4 years ago

Hi, I have a Home full page.

The header is visible while the footer not, is below and I have to scroll. There is a CSS to make all visible in the page?

Thank's a lot, Lele

0
3 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 4 years ago #16457

Hi there!

Are you talking about the sticky footer? Do you want the footer to visible all the time on screen?

Then the following documentation link will help you, please find the portion named "How to set sticky/fixed footer":

https://www.joomshaper.com/documentation/helix-framework/helixultimate/faq-how-to-do

Best Regards

0
L
Lele
Accepted Answer
4 years ago #16474

Hi Rashida, yes I'm talking about sticky footer. Should be always visible on bottom page. The link above and CSS doesn't help. With "#sp-footer { position: fixed; }" the footer disappear.

Do you have other CSS solutions?

Thank's a lot, Lele

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 4 years ago #17840

Hi there!

Sorry for the unwanted delay!

Please use the following code in your custom CSS:

#sp-footer {
    position: fixed;
    width: 100%;
    z-index: 1;
    bottom: 0px;
    left:0px;
}

This should solve the issue for you!

Note: Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

https://prnt.sc/pu705g

https://prnt.sc/pu70zn

Best Regards

0