You could try:
For forums:
Add to global.css
* you then would adjust the fcolor_ # numbers to match your forum ids and add further ids and colors for all of your forum ids. This way you can have different colors for any and or all.
In forumbit_depth2_forum template find:
And replace with:
For subforums:
In forumbit_depth3 find:
Replace with:
Add to global.css:
* you then would adjust the sfcolor_ # numbers to match your sub forum ids and add further ids and colors for all of your forum ids. This way you can have different colors for any and or all.
For colored thread titles:
In showthread find:
replace with:
Add to global.css:
* you then would adjust the tcolor_ # numbers to match your thread ids and add further ids and colors for all of your thread ids. This way you can have different colors for any and or all.
For colored threadlist titles:
in forumdisplay_thread find:
replace with:
Add to global.css:
* you then would adjust the tlcolor_ # numbers to match your thread ids and add further ids and colors for all of your thread ids. This way you can have different colors for any and or all.
For category depth 1 & 2 titles:
Find in forumbit_depth1_cat:
Replace with:
Find in forumbit_depth2_cat:
And replace with:
add to global.css:
* you then would adjust the catcolord1_ # & catcolord2_# numbers to match your forum ids and add further ids and colors for all of your forum ids. This way you can have different colors for any and or all.
Screenshot_20181007-135533.png (Size: 79.67 KB / Downloads: 7)
Screenshot_20181007-133835.png (Size: 84.95 KB / Downloads: 8)
Screenshot_20181007-054445.png (Size: 57.84 KB / Downloads: 7)
Screenshot_20181007-154627.png (Size: 72.76 KB / Downloads: 7)
For forums:
Add to global.css
Code:
/** Colored Forum Titles by Fids by vintagedaddyo **/
.fcolor_2 a:link,.fcolor_2 a:active {
color:green!important;
font-weight:700!important;
}
.fcolor_2 a:visited {
color:green!important;
font-weight:700!important;
text-decoration:none!important;
}
.fcolor_2 a:hover {
color:green!important;
font-weight:700!important;
text-decoration:underline!important;
}
.fcolor_3 a:link,.fcolor_3 a:active {
color:#FFD700!important;
font-weight:700!important;
}
.fcolor_3 a:visited {
color:#FFD700!important;
font-weight:700!important;
text-decoration:none!important;
}
.fcolor_3 a:hover {
color:#FFD700!important;
font-weight:700!important;
text-decoration:underline!important;
}
.fcolor_4 a:link,.fcolor_4 a:active {
color:red!important;
font-weight:700!important;
}
.fcolor_4 a:visited {
color:red!important;
font-weight:700!important;
text-decoration:none!important;
}
.fcolor_4 a:hover {
color:red!important;
font-weight:700!important;
text-decoration:underline!important;
}* you then would adjust the fcolor_ # numbers to match your forum ids and add further ids and colors for all of your forum ids. This way you can have different colors for any and or all.
In forumbit_depth2_forum template find:
Code:
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>And replace with:
Code:
<span class="fcolor_{$forum['fid']}"><a href="{$forum_url}">{$forum['name']}</a></span>For subforums:
In forumbit_depth3 find:
Code:
<strong><a href="{$forum_url}" title="{$forum_viewers_text_plain}">{$forum['name']}</a></strong>Replace with:
Code:
<span class="sfcolor_{$forum['fid']}"><a href="{$forum_url}" title="{$forum_viewers_text_plain}">{$forum['name']}</a></span>Add to global.css:
Code:
/** Subforum title color by fid by vintagedaddyo **/
.sfcolor_6 a:link,.sfcolor_6 a:active {
color:green!important;
font-weight:700!important;
}
.sfcolor_6 a:visited {
color:green!important;
font-weight:700!important;
text-decoration:none!important;
}
.sfcolor_6 a:hover {
color:green!important;
font-weight:700!important;
text-decoration:underline!important;
}* you then would adjust the sfcolor_ # numbers to match your sub forum ids and add further ids and colors for all of your forum ids. This way you can have different colors for any and or all.
For colored thread titles:
In showthread find:
Code:
<div>
<strong>{$thread['threadprefix']}{$thread['subject']}</strong>
</div>replace with:
Code:
<div>
<span class="tcolor_{$thread['tid']}">{$thread['threadprefix']}{$thread['subject']}</span>
</div>Add to global.css:
Code:
/** colored by tid thread titles by vintagedaddyo **/
.tcolor_1 {
color:orange!important;
font-weight:700!important;
}
.tcolor_2 {
color:yellow!important;
font-weight:700!important;
}
.tcolor_3 {
color:red!important;
font-weight:700!important;
}* you then would adjust the tcolor_ # numbers to match your thread ids and add further ids and colors for all of your thread ids. This way you can have different colors for any and or all.
For colored threadlist titles:
in forumdisplay_thread find:
Code:
<span>{$prefix} {$gotounread}{$thread['threadprefix']}<span class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}"><a href="{$thread['threadlink']}">{$thread['subject']}</a></span>{$thread['multipage']}</span>replace with:
Code:
<span>{$prefix} {$gotounread}{$thread['threadprefix']}<span class="{$inline_edit_class} {$new_class}" id="tid_{$inline_edit_tid}"><span class="tlcolor_{$thread['tid']}"><a href="{$thread['threadlink']}">{$thread['subject']}</a></span></span>{$thread['multipage']}</span>Add to global.css:
Code:
/** colored by tid threadlist titles by vintagedaddyo **/
.tlcolor_1 a:link,.tlcolor_1 a:active {
color:orange!important;
font-weight:700!important;
}
.tlcolor_1 a:visited {
color:orange!important;
font-weight:700!important;
text-decoration:none!important;
}
.tlcolor_1 a:hover {
color:orange!important;
font-weight:700!important;
text-decoration:underline!important;
}
.tlcolor_2 a:link,.tlcolor_2 a:active {
color:#FFD700!important;
font-weight:700!important;
}
.tlcolor_2 a:visited {
color:#FFD700!important;
font-weight:700!important;
text-decoration:none!important;
}
.tlcolor_2 a:hover {
color:#FFD700!important;
font-weight:700!important;
text-decoration:underline!important;
}
.tlcolor_3 a:link,.tlcolor_3 a:active {
color:red!important;
font-weight:700!important;
}
.tlcolor_3 a:visited {
color:red!important;
font-weight:700!important;
text-decoration:none!important;
}
.tlcolor_3 a:hover {
color:red!important;
font-weight:700!important;
text-decoration:underline!important;
}* you then would adjust the tlcolor_ # numbers to match your thread ids and add further ids and colors for all of your thread ids. This way you can have different colors for any and or all.
For category depth 1 & 2 titles:
Find in forumbit_depth1_cat:
Code:
<div><strong><a href="{$forum_url}">{$forum['name']}</a></strong><br /><div class="smalltext">{$forum['description']}</div></div>Replace with:
Code:
<div><span class="catcolord1_{$forum['fid']}"><a href="{$forum_url}">{$forum['name']}</a></span><br /><div class="smalltext">{$forum['description']}</div></div>Find in forumbit_depth2_cat:
Code:
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$subforums}</div>And replace with:
Code:
<span class="catcolord2_{$forum['fid']}"><a href="{$forum_url}">{$forum['name']}</a></span>{$forum_viewers_text}<div class="smalltext">{$forum['description']}{$subforums}</div>add to global.css:
Code:
/** colored category depth 1&2 titles by vintagedaddyo**/
/** d1**/
.catcolord1_1 a:link,.catcolord1_1 a:active {
color:orange!important;
font-weight:700!important;
}
.catcolord1_1 a:visited {
color:orange!important;
font-weight:700!important;
text-decoration:none!important;
}
.catcolord1_1 a:hover {
color:orange!important;
font-weight:700!important;
text-decoration:underline!important;
}
.catcolord1_2 a:link,.catcolord1_2 a:active {
color:yellow!important;
font-weight:700!important;
}
.catcolord1_2 a:visited {
color:yellow!important;
font-weight:700!important;
text-decoration:none!important;
}
.catcolord1_2 a:hover {
color:yellow!important;
font-weight:700!important;
text-decoration:underline!important;
}
/** d2 **/
.catcolord2_3 a:link,.catcolord2_3 a:active {
color:purple!important;
font-weight:700!important;
}
.catcolord2_3 a:visited {
color:purple!important;
font-weight:700!important;
text-decoration:none!important;
}
.catcolord2_3 a:hover {
color:purple!important;
font-weight:700!important;
text-decoration:underline!important;
}
.catcolord2_5 a:link,.catcolord2_5 a:active {
color:red!important;
font-weight:700!important;
}
.catcolord2_5 a:visited {
color:red!important;
font-weight:700!important;
text-decoration:none!important;
}
.catcolord2_5 a:hover {
color:red!important;
font-weight:700!important;
text-decoration:underline!important;
}
catcolord2_9 a:link,.catcolord2_9 a:active {
color:gold!important;
font-weight:700!important;
}
.catcolord2_9 a:visited {
color:gold!important;
font-weight:700!important;
text-decoration:none!important;
}
.catcolord2_9 a:hover {
color:gold!important;
font-weight:700!important;
text-decoration:underline!important;
}* you then would adjust the catcolord1_ # & catcolord2_# numbers to match your forum ids and add further ids and colors for all of your forum ids. This way you can have different colors for any and or all.
Screenshot_20181007-135533.png (Size: 79.67 KB / Downloads: 7)
Screenshot_20181007-133835.png (Size: 84.95 KB / Downloads: 8)
Screenshot_20181007-054445.png (Size: 57.84 KB / Downloads: 7)
Screenshot_20181007-154627.png (Size: 72.76 KB / Downloads: 7)