MyBB Community Forums

Full Version: where to find User(s) browsing this forum: 1 Guest in the templete
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i am trying to change the color off User(s) browsing this forum: 1 Guest(s)
of my website i can see its lined under smalltext where would i find it so i can name it somting else like smalltext2 so i can change the color off it so that it dose not change all the small text on my website. i also want two do the same with New Posts locked post text ect. so in other words i want to to change the class it sets around[/align]
Forum Display Templates >> forumdisplay_usersbrowsing
and
Index Templates >> index
Hi thanks,

where would i find

New Posts:
Hot Thread (New)
Hot Thread (No New)
No New Posts
Contains Posts by You
Locked Thread

in the template

Wes
Forum Display Templates >> forumdisplay_threadlist

<div class="float_left">
    <div class="float_left">
        <dl class="thread_legend smalltext">
            <dd><img src="{$theme['imgdir']}/newfolder.gif" alt="{$lang->new_thread}" title="{$lang->new_thread}" /> {$lang->new_thread}</dd>
            <dd><img src="{$theme['imgdir']}/newhotfolder.gif" alt="{$lang->new_hot_thread}" title="{$lang->new_hot_thread}" /> {$lang->new_hot_thread}</dd>
            <dd><img src="{$theme['imgdir']}/hotfolder.gif" alt="{$lang->hot_thread}" title="{$lang->hot_thread}" /> {$lang->hot_thread}</dd>
        </dl>
    </div>

    <div class="float_left">
        <dl class="thread_legend smalltext">
            <dd><img src="{$theme['imgdir']}/folder.gif" alt="{$lang->no_new_thread}" title="{$lang->no_new_thread}" /> {$lang->no_new_thread}</dd>
            <dd><img src="{$theme['imgdir']}/dot_folder.gif" alt="{$lang->posts_by_you}" title="{$lang->posts_by_you}" /> {$lang->posts_by_you}</dd>
            <dd><img src="{$theme['imgdir']}/lockfolder.gif" alt="{$lang->locked_thread}" title="{$lang->locked_thread}" /> {$lang->locked_thread}</dd>
        </dl>
    </div>
    <br style="clear: both" />
</div>
thank you for your help before where do i find the id or class for
Forum Contains New Posts
Forum Contains No New Posts
Forum Contains No New Posts
Forum is Locked
Forum is Locked

on the index page and also what would the class or id be in the css to change the color and when reading an post also where would i change the color for

* View a Printable Version
* Send this Thread to a Friend
* Subscribe to this thread

Inline Thread Moderation:
Search this Forum:
Forum Jump:

thank you again for your help
You can find out the CSS class an element uses by viewing the source, it may vary depending on your theme but usually...

(2010-09-16, 02:26 PM)wesmcdermott Wrote: [ -> ]thank you for your help before where do i find the id or class for
Forum Contains New Posts
Forum Contains No New Posts
Forum Contains No New Posts
Forum is Locked
Forum is Locked

...is .forum_legend in global.css

(2010-09-16, 02:26 PM)wesmcdermott Wrote: [ -> ]* View a Printable Version
* Send this Thread to a Friend
* Subscribe to this thread

...can be found in showthread.css

(2010-09-16, 02:26 PM)wesmcdermott Wrote: [ -> ]Inline Thread Moderation:
Search this Forum:
Forum Jump:

...are select and input.textbox in global.css
Thanks a lot for your help.

Best,
Wes