Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1338065

    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!

    #1338122

    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

    #1338214

    Thanks Ismael! It’s worked :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Issues with Z-index’ is closed to new replies.