Hi!
Asking for help on how I can achieve the following:
- Change the footer sizing to be 10% of the page
- Lock the footer in place so it will appear even if it isnt the end of the page
Thank you in advance for any assistance.
Hi!
Asking for help on how I can achieve the following:
Thank you in advance for any assistance.
Hi
You can below CSS code to change the footer size
#Footer {
height: 10vh !important;
}
Thank you
Is there any way to make the footer appear at the bottom even as I scroll up or down?
Hi
You can use below code to fix the footer
#Footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
you can also change the alignment acc. to your requirement.
This solved it, thank you again
One last help, the footer blocks the next and back buttons, will I need to do an additional css for the bottons?
Hi
You can just simply change this to align the footer in centre
left: 50%;
Thank you
I’ll experiment on the positionings.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.