• Resolved cadrago21

    (@cadrago21)


    Good morning guys, congratulations on the pluging.

    I have a small problem regarding the test colour in the LABEL field, which colours my text black.

    I have inserted a paragraph where I ask for a tick to confirm the use of a certain thing.

    I can’t apply a class, even within the field to have it white.

    How can I do this?

    Thank you

    • This topic was modified 1 year, 2 months ago by cadrago21.
    • This topic was modified 1 year, 2 months ago by cadrago21.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support dominikl65

    (@dominikl65)

    Hi @cadrago21

    I take it you mean the color in the placeholder of your field? If so, please use the CSS selector ::placeholder – example:

    input.input-text::placeholder{
    color:red;
    opacity:1;
    }
    You can also increase the visibility of this field by adding opacity

    Please let me know if this is what you are referring to, as I do not see any other text in black on the checkout page.

    Thread Starter cadrago21

    (@cadrago21)

    The problem refers to what is shown in the image. it is a check field relating to a text which unfortunately I cannot turn white!

    if i modify the LABEL field as shown in the styles (second image) , no other things show up!

    thanks

    Plugin Support dominikl65

    (@dominikl65)

    Hi @cadrago21,

    In that case, to make the text next to that checkout white, you need to refine that label (you currently have a label thrown in and that grabs everything). Try using this code:

    .woocommerce-billing-fields #billing_acconsento__field label{
    color:#fff;
    }

    Thread Starter cadrago21

    (@cadrago21)

    Super! Thanks so much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘CSS Color Text’ is closed to new replies.