MyBB Community Forums

Full Version: How To Change Thread Subject Color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How To Change Thread Subject Color  and   text-align: center;


my website link  https://forum.a2zrom.com/thread-umtv2-um...cfire-v5-5

[attachment=42701]
Can you please provide your forum URL and test account if it's closed for guests?
In your Post Bit template find this:
<div style="text-align: center;">
<strong><i class="fa fa-comments"></i> UMTv2 / UMT Pro - QcFire v5.5</strong>
</div>
and replace the div by
<div style="text-align: center; color: #E31B00">

Another option, you can also add a new class and define CSS, e.g.:
<div class="postbit_subject">

CSS:
.postbit_subject {
text-align: center;
color: #E31B00;
}

[ExiTuS]