MyBB Community Forums

Full Version: Change the colour of Subforum text?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I couldn't find where abouts I can change the text color of Subforum titles? as seen in the image when I change the trow colours everything changes. How do I target specific areas of text? Also The little folder icon some are white the others grey? how did that happen?
https://imgur.com/PLBE48o

I also had to share the link to the image because If I try to add picture with Link it does not show.

Forum: https://uros-roleplay.net/index.php

Kind Regards
-Reegz
The icon looks grey because it has an opacity of 40%

Theme global.css
.subforum_minioff {
	color: #fff;
	opacity: .4;	
	font-size: 5px;
}

The reason is that this sub forum has no new (unread) posts.
(2022-11-25, 08:20 PM)SvePu Wrote: [ -> ]The icon looks grey because it has an opacity of 40%

Theme global.css
.subforum_minioff {
	color: #fff;
	opacity: .4;	
	font-size: 5px;
}

The reason is that this sub forum has no new (unread) posts.

Thank you very much!