Hi
I am trying to change font color for masonry sort only in one color section.
I find that this code
.av-masonry-sort a {
-webkit-text-fill-color: white;
}
works but for all pages.
I set a name for Custom Css Class e.g. “blog”.
Which css code I should use to apply only for that section?
Thank you a lot
Krzysztof
Hey Krzysztof,
You can accomplish this by using the page id class, yours for that page is: page-id-331, so your CSS should look like this:
.page-id-331 .av-masonry-sort a {
-webkit-text-fill-color: white;
}
Best regards,
Mike
Hi Mike
Great idea!
Thank you for quick answer
BR
Krzysztof