Average Sam 154 Posted May 1, 2020 Share Posted May 1, 2020 For my forum I'm trying to add a glow behind a specific category. The following works just fine, but applies to all forum categories. .lkAreaCategory.cForumRow { box-shadow: 0px 0px 13px 1px rgba(194,148,50,1); } The code bellow doesn't work at all. [data-categoryid="9"] .lkAreaCategory.cForumRow { box-shadow: 0px 0px 13px 1px rgba(194,148,50,1); } Link to comment Share on other sites More sharing options...
Voldri 8 Posted May 5, 2020 Share Posted May 5, 2020 For the data-category, I'd say meddle around with the divs you're using. Otherwise you can define the forum by an nth-child so something like /*Changing the first forum row, you can change the value 1 to whichever order the forum row you're wanting to change is*/ .lkAreaCategory.cForumRow:nth-child(1) { box-shadow: 0px 0px 13px 1px rgba(194,148,50,1); } Other than that ^ again just look at the divs you're looking to change. If you need further help, mention me on the WebFlake discord. 1 Link to comment Share on other sites More sharing options...
Recommended Posts