• Resolved nashua

    (@nashua)


    Hello,

    How could i change the color of the variations label.

    I have two variation:
    ‘stap 1: kies je kleur’
    ‘stap 2: kies de maat’

    For example:
    Now i would like to change the first to ‘green’
    And the second to ‘blue’

    How could i arrange that? There is no class per label only this:
    <label for=”pa_color”>Stap 1: Kies je kleur</label>
    and
    <label for=”pa_size”>Stap 2: Kies de maat</label>

    Thank you for your help
    Jeroen

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • .product_cat-mats .variations tr:nth-child(1) label {
      color: Green;
    }
    .product_cat-mats .variations tr:nth-child(2) label {
      color: Blue;
    }
    Thread Starter nashua

    (@nashua)

    @lorro, great, that is it.
    I had to remove the first class. but than it worked.
    thank you verry much
    Jeroen

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘change color of attribute titles’ is closed to new replies.