• After I upgraded to latest version everything works OK and I get the green outline showing that msg is sent and i also get the corresponding email in my inbox. So far so good.

    However the green suceessful send-outline no longer shows the “Thank you for your message. It has been sent. Olya will contact you shortly.” message

    It is definately there, because if i highlight it with the mouse i can read the selected inverted colour text, so it looks like its using a white display font.

    So where do i find this font colour setting so i can change it?
    thx

    • This topic was modified 3 years, 3 months ago by lawtout1.
    • This topic was modified 3 years, 3 months ago by lawtout1.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • hi @lawtout1

    check here:
    YOUR_DOMAIN/wp-content/themes/bridge/css/stylesheet.css:21200 and up

    old style like this:

    div.wpcf7-response-output.wpcf7-mail-sent-ok {
      background-color: #1abc9c;
    }

    need to be changed with something like this

    .wpcf7 form.sent .wpcf7-response-output {
    	background-color: #4caf50; /* #008000 */
    }
    
    .wpcf7 form.failed .wpcf7-response-output,
    .wpcf7 form.aborted .wpcf7-response-output {
    	background-color: #dc3232; /* Red */
    }
    
    .wpcf7 form.spam .wpcf7-response-output {
    	background-color: #f56e28; /* Orange */
    }
    
    .wpcf7 form.invalid .wpcf7-response-output,
    .wpcf7 form.unaccepted .wpcf7-response-output {
    	background-color: #ffb900; /* Yellow */
    }

    you can add this code to customizer -> additional css

    Thread Starter lawtout1

    (@lawtout1)

    thx for your reply and assistance. I edited the file but there was no change.
    here’s a link to the files before/after edit:

    https://drive.google.com/drive/folders/1KgxdBVIKO5Fy0eyikhXdB41gW1Xb7SMi?usp=sharing

    could you possibly take a look and see if i did it correctly

    many thx in advance

    @lawtout1, the link to your website is enough!

    check the code you edited on your website, it’s fine but you need to replace also “border-color:” with “background-color:”

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Upgraded now no sent confirmation text’ is closed to new replies.