• Resolved tkjohns

    (@tkjohns)


    The background color for the confirmation message is set to transparent. I try to use custom css to change the color, but nothing impacts it.

    This is what I’m using:

    .wpforms-confirmation-container-full {
    color: #ffffff;
    background: rgba(50,50,50,0.8) !important;
    }

    This is what shows up in the developer tool:

    div.wpforms-confirmation-container-full {
    color: inherit !important;
    background: transparent !important;
    background-image: initial !important;
    background-position-x: initial !important;
    background-position-y: initial !important;
    background-size: initial !important;
    background-repeat: initial !important;
    background-attachment: initial !important;
    background-origin: initial !important;
    background-clip: initial !important;
    background-color: transparent !important;
    border: 1px solid #fff !important;
    }

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Amjad Ali

    (@amjadali688)

    Hi @tkjohns ,

    Thanks for reaching out!

    To change the styling of the confirmation message, try using this snippet instead:

    div[class^="wpforms-confirmation-container"] {
    color: #ffffff;
    background: rgba(50,50,50,0.8) !important;
    }

    This should apply the background color properly.

    And in case it helps, here’s a tutorial on how to add custom CSS like this to your site.

    Hope this helps!

    Plugin Support Amjad Ali

    (@amjadali688)

    Hi @tkjohns ,

    We haven’t heard back from you in a few days, so I’m going to go ahead and close this thread for now. But if you’d like us to assist further, please feel welcome to continue the conversation.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Confirmation background is transparent’ is closed to new replies.