Styling elements inside combo class (stupid question)

Hey guys, I’m probably stupid, but I can’t find a way to style elements inside a combo class.

i.e.

.parent-card .item {

display: flex;

}

.parent-card.open .item {

display: none;

}

Webflow supports combo classes, so obviously it also probably supports the ability to change the styling of inner elements with combo classes applied, but for some reason if I change the styling of the “.item” in the webflow designer, it applied that update to the class itself, rather than what it’s nested inside.


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

1 Like

Hello @Asaad_Mahmood, make sure that you are using the correct combo class. I think in the designer it might say “open” but if you inspect on a browser it might actually be “w–open” so you would have to use something like .parent-card.w--open .item I hope this helps!