MyBB Community Forums
How can i Color the Merge Separator? - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Community Archive (https://community.mybb.com/forum-106.html)
+--- Forum: Archived Forums (https://community.mybb.com/forum-143.html)
+---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html)
+----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html)
+------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html)
+------ Thread: How can i Color the Merge Separator? (/thread-177308.html)



How can i Color the Merge Separator? - Black Box - 2015-09-02

How can i Color the Horizontal Rule? my theme is black and the Horizontal Rule is black.. i want to change it to Red or lighter color..

Thanks!


RE: How can i Color the Horizontal Rule? - avril - 2015-09-02

what exacly is 'horizontal rule', which theme, what site ?


RE: How can i Color the Merge Separator? - Black Box - 2015-09-02

(2015-09-02, 09:26 PM)avril Wrote: what exacly is 'horizontal rule', which theme, what site ?

sorry i mean the "Merge Separator" sir


RE: How can i Color the Merge Separator? - Ad Bakker - 2015-09-03

I think this is a normal <hr> element. This can be changed by:

AdminCP -> Templates & Style -> choose theme -> global.css -> Edit style sheet advanced mode

then search for "hr" and change both background-color and color to the color you wish. For instance for a red line:


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


Refresh cache (ctrl-F5), but still it can last a while before it becomes effective. Have patience Smile .


RE: How can i Color the Merge Separator? - Black Box - 2015-09-04

(2015-09-03, 03:21 PM)Ad Bakker Wrote: I think this is a normal <hr> element. This can be changed by:

AdminCP -> Templates & Style -> choose theme -> global.css -> Edit style sheet advanced mode

then search for "hr" and change both background-color and color to the color you wish. For instance for a red line:


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


Refresh cache (ctrl-F5), but still it can last a while before it becomes effective. Have patience Smile .


did you use it? im waiting (5mins.) but stil not working.. Sad


RE: How can i Color the Merge Separator? - .m. - 2015-09-04

^ it should work. post test thread url of your forum where you have merged posts so that someone can check it


RE: How can i Color the Merge Separator? - Black Box - 2015-09-04

(2015-09-04, 02:44 AM).m. Wrote: ^ it should work. post test thread url of your forum where you have merged posts so that someone can check it

its working.. there's a wrong in the tutorial of Ad Bakker .. 

the #ff0000 need to change into #FF0000

into capital letter.. Lol.. my bad.. 

Thanks for the help..  Blush +Reputation to you sir .m. and sir Ad Bakker 


RE: How can i Color the Merge Separator? - Corey H - 2015-09-04

(2015-09-04, 03:00 AM)Black Box Wrote:
(2015-09-04, 02:44 AM).m. Wrote: ^ it should work. post test thread url of your forum where you have merged posts so that someone can check it

the horizontal rule is still black.. Sad

(2015-09-04, 02:44 AM).m. Wrote: ^ it should work. post test thread url of your forum where you have merged posts so that someone can check it

its working.. there's a wrong in the tutorial of Ad Bakker .. 

the #ff0000 need to change into #FF0000

into capital letter.. Lol.. my bad.. 

Thanks for the help..  Blush +Reputation to you sir .m. and sir Ad Bakker 

Capitalization shouldn't matter, I'm sure it was just your cache...