MyBB Community Forums

Full Version: how i can
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello dears

how i can change the color of day's

today and yerterday also bold

thanks
That's an odd, but interesting request...

In /inc/functions.php, find:
$date = $lang->today;
Replace with
$date = '<span style="color: red; font-weight: bold;">'.$lang->today.'</span>';

Find:
$date = $lang->yesterday;
Replace with
$date = '<span style="color: orange; font-weight: bold;">'.$lang->yesterday.'</span>';

I don't know if there are any side effects.
thanks a lot dear

its working

again thanks