MyBB Community Forums

Full Version: How to bold this ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi admin and mod

can somebody help me with this i just want to make these bold ,if u help me with this thing
In global.css find:
.postbit_details or .post .post_author div.author_statistics (dipp what theme you are using)
and add
font-weight: bold;
good stuff bro thanks and if i want to add different different color in each line ,its possible to do so thanks
Guess you can set it in divs.
So something like this (not shore if this is the wright way, but then someone else will give you the right answer)

Open postbit_author_user (acp/themes/your themplate/postbit/postbit_author_user)

You will see different lines with code, so I just gonna give you one example, remember to give the div id different names.

<div id="example1"{$lang->postbit_posts} {$post['postnum']}</div><br />

The other lines will have to get a new id, let's say example2 and so on.

In global.css add at the end
.example1 {
color: #ffffff;
}

.example2 {
color: #ccc;
}

and so on
You should use a div class, not an id as an id should only occur once on the page:

<div class="postblue">{$lang->postbit_posts} {$post['postnum']}</div><br />

The other lines will have to get a new class, let's say postred and so on.

In global.css add at the end

.postblue {
color: blue
}

.postred {
color: red;
}
ok, class, thanks also from me... gonna remember that Smile