Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1659000
Font
Closed

Comments

  • chieu-duong started the conversation

    Hi there, me again. 

    1. I have some trouble with change text-color and button color in my contact page, plz help me or give me a css code example to change it. thanks! 

    2. I want to change the space between sidebar and my content in all page, how can i do that?

    Thanks!

  •  2,699
    PenciDesign replied

    Hi,

    1/ For change color for text on the left, let's change it like on this image

    To change the text & border color on your contact page, please add more this code to Customize > Custom CSS:

    .wpcf7 input::placeholder { color: #ffffff; opacity: 1; }
    .wpcf7 input:-ms-input-placeholder { color: #ffffff; }
    .wpcf7 input::-ms-input-placeholder { color: #ffffff; }
    .wpcf7 input{ color: #ffffff; border-color: #ffffff; }
    .wpcf7 input[type="submit"], .wpcf7 input[type="submit"]:hover{ background: #ba8059; color: #ffffff; }
    

    Change color code #ffffff on 4 first lines to color for input text you want.

    Change color code #ba8059 & #ffffff to change color for your submit button.

    2/ To do that, please add more this code to Customize > Custom CSS:

    .container.penci_sidebar #main{ padding-right: 30px; }
    

    Change number 30 to value you want.


    Best Regards,

    PenciDesign

  •  2,699
    PenciDesign replied

    Hi,

    Ah, ok. Please add more this code for that:

    .wpcf7 textarea::placeholder { color: #ffffff; opacity: 1; }
    .wpcf7 textarea:-ms-input-placeholder { color: #ffffff; }
    .wpcf7 textarea::-ms-input-placeholder { color: #ffffff; }
    .wpcf7 textarea{ color: #ffffff; border-color: #ffffff; }
    

    Best Regards,

    PenciDesign