MyBB Community Forums

Full Version: Changing link color of Thread/Forum with unread post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Finally I get a way how to change the color of the thread (and his forum parent) containing a new unread post, and I want to share this with you:

CSS modifications:

Go to ACP Home » Themes » YourTheme » global.css » Advanced editing (top right)

1. find:
.subject_new {
    ....
}

add before the ending }
color: #CB296A !important;


2. Find:

.forumtitle {
	font-weight: bold;
}

add below:
.on {
      color: #CB296A !important;
}

(you can change the color #CB296A to what ever you want)
*******************************************************************************
Template modification:


Home » Template Sets » YourTheme Templates » Forum Bit » forumbit_depth2_forum:

Find:
<a class="forumtitle"

Change it to:
<a class="forumtitle {$lightbulb['folder']}"
Is it possible to have a screenshot of these? and I guess the changes shown is unique on every different user right? Looking something like this for very long time.

This was indeed a helpful modification since it would make easy for members to distinguish unread post.

Another quick question here, is this for unread post only? right?
How about in changing the color of newly created thread shown on forumdisplay/showthread display?
How was it possible?
Thanks.

Edit:
I cant find this code on global.css
.forumtitle {
    font-weight: bold;
}