MyBB Community Forums

Full Version: Change Color of Sig. seperator line
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I would like to change color of my signature separate line

[Image: 02b3699bce8aa589c3ca3ec06999ab01.png]

Default color is Black and I want to change it to white or some other color.


Thank You
That is horizontal rule.

In global.css:

hr {
	background-color: #000000;
	color: #000000;
	height: 1px;
	border: 0px;
}

Also, I suggest add "width: 100%;" that will make the separator filled out and even better.
Oh cool, I did checked global.css myself to find that rule but couldn't catcht that Smile


Thanks Yar.