How can I bring the buttonizer to the front of the web page? Inspecting the page reveals it's there, but it is behind the full page google map. I tried custom CSS:
""
.buttonizer {
z-index: 999999;
}
""
But didn't work. Is there a setting I'm missing? Thank you.

  • James replied to this.
  • Hi madmotifs ,

    Thanks for reaching out to us!

    You might need to add !important at the end of your css for it to work.

    So it should be something like this:

    .buttonizer {
        z-index: 999999 !important;
    }

    Let me know if this works for you!

    Hi madmotifs ,

    Thanks for reaching out to us!

    You might need to add !important at the end of your css for it to work.

    So it should be something like this:

    .buttonizer {
        z-index: 999999 !important;
    }

    Let me know if this works for you!