MyBB Community Forums

Full Version: chagne colors of followings on index page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi

Pl ref the attachment i m looking to change colors for them.

Pl help
In forumbit_depth2_forum and forumbit_depth2_cat , find:
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>

Replace with:
<span class="forumname"><strong><a href="{$forum_url}">{$forum['name']}</a></strong></span>

Add to global.css:
.forumname a:link, .forumname a:visited {
color: #000000;
}

Same idea for the other bit, the template you need to edit is forumbit_subforums
pl explain for others changes also i didn't find in templates
(2010-11-10, 11:20 AM)AJS Wrote: [ -> ]In forumbit_depth2_forum and forumbit_depth2_cat , find:
<strong><a href="{$forum_url}">{$forum['name']}</a></strong>

Replace with:
<span class="forumname"><strong><a href="{$forum_url}">{$forum['name']}</a></strong></span>

Add to global.css:
.forumname a:link, .forumname a:visited {
color: #000000;
}

Same idea for the other bit, the template you need to edit is forumbit_subforums


Hi Ajs

pl explain in similar way for other changes also
Hi Ajs need ur help to do this
In forumbit_subforms find:
<br />{$lang->subforums} {$sub_forums}

Replace with:
<br /><span class="subforumtext">{$lang->subforums}</span> {$sub_forums}

In global.css add:
.subforumtext {
color: #CCCCCC;
}
Thanks ajs

what about right side section as per attachment
In forumbit_depth2_forum_lastpost find:
{$lang->by} {$lastpost_profilelink}</span>

Replace with:
{$lang->by}</span> <span class="authorlink">{$lastpost_profilelink}</span>

Add to global.css:
.authorlink a:link, .authorlink a:visited {
color: #CCCCCC;
font-size: 11px;
}
(2010-11-13, 08:44 AM)AJS Wrote: [ -> ]In forumbit_subforms find:
<br />{$lang->subforums} {$sub_forums}

Replace with:
<br /><span class="subforumtext">{$lang->subforums}</span> {$sub_forums}

In global.css add:
.subforumtext {
color: #CCCCCC;
}

Hi
This is about subforum title not about subforums links. i m looking codes for subforum links
I gave you the change needed to change what you've circled in the screen shot.

You should be able to figure out what needs to be done to change anything else from what I've posted above.
(2010-11-13, 12:29 PM)AJS Wrote: [ -> ]I gave you the change needed to change what you've circled in the screen shot.

You should be able to figure out what needs to be done to change anything else from what I've posted above.

Ohh sorry ajs

pl ref the new image
Pages: 1 2