Hi, do you have any tips how to get my donate button to always float in the front?
I have added this CSS but it still goes behind the SVG dividers
.button-float {
z-index: 9999999999999 !important;
position: fixed !important;
transform: rotate(-90deg);
left: 0;
top: 85%;
margin-left: -105px !important; padding-left: 40px !important;
}
Thank you!
Hey amyteslin,
Thank you for the inquiry.
You should adjust the z-index or the stack order of the color section containing the donate the button, not the button itself. You may need to apply a unique ID or class name to the section in order to change its style directly without affecting the other sections.
Example:
#section-with-donate {
position: relative;
z-index: 999;
}
Best regards,
Ismael
Thanks Ismael! It’s worked :)