Every other css

Hey guys,

This should be pretty straight forward… but somehow I just can’t crack it.
I need every other light beige background to be red, but I just cant target it?

You can see my layout below, the structure and the css that doesn’t work.
Thanks in advance.

Link
https://enpa.webflow.io/team-2

Use !important at the end.

For Example:

div {
       color : blue !important;
    }

We need the published link to help you. :slight_smile:

The link is in the topic now :slight_smile:

Can you also add the live link? :slight_smile:

1 Like

@Volander

Here you go mate (well it’s pink, but you can change that):

.team-background.w-dyn-item:nth-child(even) .team-column .team__color {
   background: pink;
}

Hope it works.

1 Like

Ahh i see what you did there! It works perfectly, thank you so much! :smiley:

No problem mate. Glad it helped. :v: