how to make the buttons remain fixed in the footer of the whole page?
how to make the buttons remain fixed in the footer of the whole page?
I need to leave it the way it appears in the attached image, in that fixed position for mobiles. Can it be placed that way?
6 months later
Jasper Hello!
Hello!
+1 forthe bottom placement
Our goal is to make articles fully visible, without distraction on left/right side.
Thank you!
Tom
10 days later
Hello!
I made a little CSS for mobile only.
It looks like this: http://prntscr.com/16976jx
Enjoy:
@media (max-width: 990px) {
.buttonizer-group{
left: 50% !important;
bottom: 0% !important;
flex-direction: row-reverse !important;
margin-left: -84px !important;
}
}
Don't forget to adjust margin-left to place your buttons centered. -84px is for 3 buttons (56x56px size).
Regards:
Tom
takaacstamaas That's really cool, thank you for sharing this!