Hello, how can I make a different background color for each forum? For example, one is blue and the other is red...
Code: Select all
<li class="row">
Code: Select all
<li class="row bg-{forumrow.FORUM_ID}">
Code: Select all
.bg-1 {background-color: red;}
.bg-2 {background-color: green;}
Worked. Thank you very much.Mannix_ wrote: Wed Feb 21, 2024 6:09 pm in forumlist_body.html findand change toCode: Select all
<li class="row">
then you can use that class to change the background color, something like thisCode: Select all
<li class="row bg-{forumrow.FORUM_ID}">
in any css file addPurge the cache in ACP and browser after making changesCode: Select all
.bg-1 {background-color: red;} .bg-2 {background-color: green;}