Hi!
I am trying to add an outline (one specific color inactive and a different active). Is that possible?
Thanks!

  • James replied to this.
  • Hi AJF ,

    Thanks for reaching out to us!

    Unfortunately, we currently do not have a setting for this, but it might be possible to do this with custom CSS.

    Here's a simple one that adds a red border to the buttons that changes to blue on hover:

    .buttonizer-button {
      border: red 2px solid;
    }
    .buttonizer-button:hover {
      border-color: blue;
    }

    Let me know if this works for you! 😄

    6 days later

    Hi AJF ,

    Thanks for reaching out to us!

    Unfortunately, we currently do not have a setting for this, but it might be possible to do this with custom CSS.

    Here's a simple one that adds a red border to the buttons that changes to blue on hover:

    .buttonizer-button {
      border: red 2px solid;
    }
    .buttonizer-button:hover {
      border-color: blue;
    }

    Let me know if this works for you! 😄

    16 days later