MyBB Community Forums

Full Version: Signature Separator
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i change the color of the separator of the siganture, i have been searching but i cant find it
Go to Admin CP -> templates -> Modify /delete -> *your template* -> Post Bit -> postbit_signature
Change:
<hr size="1" width="25%"  align="left" />
to
<hr size="1" width="25%"  align="left" style="color: [b]red[/b];" />
Change bolded part to what color you may want
actually you can also edit it from the master theme, at the bottom find

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

regards
That however will change all horizontal lines.
CraKteR Wrote:Go to Admin CP -> templates -> Modify /delete -> *your template* -> Post Bit -> postbit_signature
Change:
<hr size="1" width="25%"  align="left" />
to
<hr size="1" width="25%"  align="left" style="color: [b]red[/b];" />
Change bolded part to what color you may want
doesnt seems to works Confused

zaher1988 Wrote:actually you can also edit it from the master theme, at the bottom find

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

regards
that works ^^
Because I forgot about background-color Wink
<hr size="1" width="25%" align="left" style="color: red; background-color: red" />
anyways you found another way so.