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 #3123398
Footer Widget Area CSS Input Type CSS
Closed

Comments

  • stevenforbes started the conversation

    Hi there,

    I'm attempting to set the border colours for the input type text and email of this signup form, but as the example shows, I'm only able to override the border size using custom CSS.

    The colour is set by 'Footer Widget Area Borders Color for List'. However, I need to have the form fields a different colour.

    Can you help at all?

    Many thanks,

    Steven

  •  2,488
    PenciDesign replied

    HI,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    #widget-area .mc4wp-form .widget input[type="text"],
    #widget-area .mc4wp-form .widget input[type="email"],
    #widget-area .mc4wp-form .widget input[type="date"],
    #widget-area .mc4wp-form .widget input[type="number"],
    #widget-area .mc4wp-form .widget input[type="search"],
    #widget-area .mc4wp-form .widget input[type="password"] {
        border-color: #000000;
    }

    Regards,
    PenciDesign.

  • stevenforbes replied

    Many thanks for the quick reply. That's perfect.