MyBB Community Forums

Full Version: How to change color of [hr]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, how can I change color of hr? I have black background and I want hr to be white-ish, but its also black.
(2016-02-22, 10:06 PM)Darkrad Wrote: [ -> ]Hello, how can I change color of hr? I have black background and I want hr to be white-ish, but its also black.

Maybe a quick Google search would help?
Find the hr in your global css of the theme you are using and just replace what you need color wise. It should look something like this:

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