Quantcast
Channel: MyBB Community Forums - Tutorials
Viewing all articles
Browse latest Browse all 685

Changing link color of Thread/Forum with unread post

$
0
0
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:
Code:
.subject_new {
    ....
}

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


2. Find:

Code:
.forumtitle {
    font-weight: bold;
}

add below:
Code:
.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:
Code:
<a class="forumtitle"

Change it to:
Code:
<a class="forumtitle {$lightbulb['folder']}"

Viewing all articles
Browse latest Browse all 685

Trending Articles