Help with CSS

Hello everyone!

Any CSS experts have an idea how to correct this? I have a component that lists the users library books, grouped by the author name. I want to change the font color of the author name/group name to be a different color and make it stand out from book titles. I named the CSS group ‘catalog’ and I assume the CSS will look something like this (tho it doesn’t work for me):

.catalog .group-header {
color: rgb(52, 212, 223);
font-weight: bold;
}

Thanks in advance!

You’re close. Just replace .group-header with h3.

4 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.