Okay
  Public Ticket #320115
Contact form text or message box color
Closed

Comments

  •  1
    Paul started the conversation

    Hello,

    I have an image background on my contact form, and when I submit a message I just get a long white box (below). You have to highlight it to read what it says. Can the message box either be 1. transparent (preferred), or 2. can the text be a different color? 

    http://screencast.com/t/Bc3j6ymoLTix
    http://screencast.com/t/BfV0VT8U2IaQ

    thanks,
    Paul

  •  8,464
    Tahir replied

    Hey!

    Can you provide the site url so i can write up some custom css. 

    Thanks 


    ThemeNectar Support Team 

  •   Paul replied privately
  •  8,464
    Tahir replied

    Hey!

    Add this into the Custom CSS box located in your Salient Options panel :
    html body .wpcf7 .wpcf7-response-output {
        background-color: transparent !important;
        color: #f00 !important;
    }
    Thanks 


    ThemeNectar Support Team 

  •  1
    Paul replied

    awesome. thanks.

  •  1
    Paul replied

    What would be the CSS code to change the background field color (and text color) where you type your info in? based on what they said on the contact form 7 site, I tried this: (I just used blue to try to see a change, but it didn't seem to work.

    html body
    .wpcf7 input[type="text"]
    .wpcf7 input[type="email"]
    .wpcf7 textarea
    {
    background-color: #0000FF;
    color: #0000FF;
    width: 50%;
    }
    
  •  8,464
    Tahir replied

    Hey!

    Add this into the Custom CSS box located in your Salient Options panel :
    input[type=text], textarea, input[type=email], input[type=password], input[type=tel], input[type=url], input[type=search], input[type=date]
    {
        background-color: #0000FF;
        color: #0000FF;
    }
    Thanks 


    ThemeNectar Support Team 

  •  1
    Paul replied

    great thanks again.