Okay
  Public Ticket #2544505
Input field transparency
Closed

Comments

  •  2
    Stefan started the conversation

    How do I make the input form field solid color (white), the label text black and square corners? 

  •  8,851
    Tahir replied

    Hey Again, Hope you had a Positive Weekend, 

    Did you try the Form Styling Options in the Salient Theme Options Panel: 

    9044153151.pngClick To Open Larger Image.

    Thanks 


    ThemeNectar Support Team 

  •  2
    Stefan replied

    Hey, yes I did try the Form Styling options.

    I managed to make the input white, but I cant find how to target the label color. Any ideas?

  •  8,851
    Tahir replied

    Hey,
    Please provide the page URL so I may write up the custom CSS for this request.
    Thanks


    ThemeNectar Support Team 

  •   Stefan replied privately
  •  8,851
    Tahir replied

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .wpcf7-form p span input::placeholder {
        color: #fff !important;
        opacity: .5 !important;
    }
    .wpcf7-form p span input {
        color: #fff !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  2
    Stefan replied

    Thanks Tahir!