MyBB Community Forums

Full Version: How to do change the signature seperator bar?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok, I made a dark theme, and you know the little black bar seperating the message from the signature? Well, it's black too and I can't see it.

But I haven't figured out a way to change the color of it!
Please enlighten me if it is possible! Rolleyes

Thanks!
FW
Templates > Modify > Post Bit Templates > Postbit_Signature

<hr size="1" color="#0c0c0c" align="left" />
{$post['signature']}

Replace the colour as you see fit
Didn't work, it's still black.. Sad
I think it will only work with IE as FF doesn't suppport this feature

Try using
background-color=""

for firefox
Nope didn't work either. Sad
Thanks anyway though.
FirefoxWiz Wrote:Nope didn't work either. Sad
Thanks anyway though.
ok, this will work.
put this in "additional css" of your theme
hr {
color: #f00;
background-color: #f00;
height: 1px;
}
color is for IE
background-color is for mozilla and opera

more info about styling <hr>
Thanks. I too was searching for this, and it seems to work great!