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 #3658244
How to change colors of variable headings
Closed

Comments

  • sourav started the conversation

    HI , I would like to change the color , size of headings for variables section option on single product page 

    I have attached an image for better understanding

    Attached files:  variable.png

  •  2,540
    PenciDesign replied

    Hi,

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

    .woocommerce div.product form.cart .variations label {
      font-size: 14px;
      font-weight: normal;
      color: #000;
    }

    Regards,
    PenciDesign.



  • sourav replied

    Thanks  , but I have few more queries.

    1. I want to add a border outside that variable selection are ( please see the red color in the image attached below )

    2. There's a thin white line below each variable selection , I want to remove or change its color ( please see orange color in the image attached below )

    Attached files:  variation 3.png

  •  2,540
    PenciDesign replied

    Hi,

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

    .woocommerce div.product form.cart {
      border: 2px solid #000;
      padding: 30px;
    }

    Regards,
    PenciDesign.