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.
Dear Members,

Kindly instruct me on how to Bold the test shown in the image.
[ the text appears when i tun a thread to sticky thread ]
[attachment=5185]

Thank You.

Mano
it should be bold by default, although i would advise changing to colour, i can barely read it.

if it isn't do this:

.trow_sep {
font-weight:bold;
}

and add it to the extra css box at the bottom in the themes styling.
tyros8000 Wrote:it should be bold by default, although i would advise changing to colour, i can barely read it.

if it isn't do this:

.trow_sep {
font-weight:bold;
}

and add it to the extra css box at the bottom in the themes styling.


Well i tried doing that... It didnt help ...

I tried adding the foll. [ bold ] code to my forumdisplay_sticky_sep Template:

<tr>
<td class="trow_sep" colspan="{$colspan}"><font color="#000000">{$lang->sticky_threads}</font></[/color]td>
</tr>

The Result is Correct , But was That right to do ?

I did the same change in : forumdisplay_threads_sep  template.
try this one

<tr>
<td class="trow_sep" colspan="{$colspan}"><strong><font color="#000000">{$lang->sticky_threads}</font></strong></[/color]td></tr>
No you're wrong, the correct class is not trow, but "tcat".
Go to your template editor, and change in the table subheaders, font-weight to bold.

If that's not enough, in the additional css, put this:
.tcat:link, a.tcat:visited, a.tcat:hover{
font-weight:bold;
}
darkteller Wrote:No you're wrong, the correct class is not trow, but "tcat".
Go to your template editor, and change in the table subheaders, font-weight to bold.

If that's not enough, in the additional css, put this:
.tcat:link, a.tcat:visited, a.tcat:hover{
font-weight:bold;
}

I did what u said but again no luck and yes My table Sub haders are already Bolded.
But plz answer my query .... In My previous Post ... was it wrong to edit the Template and adding font color="#000000" ?
No it's not. It's ok, if you're not a style perfectionist, it works fine.


And it didn't work because you did this:
<td class="[b]trow_sep[/b]" colspan="{$colspan}"><font color="#000000">{$lang->sticky_threads}</font></[/color]td>
instead of living it "tcat".


But the result it's the same, so you can use your method. Wink