Page 1 of 1

header background colour

Posted: 18 Sep 2019, 17:19
by robyn
I am trying to change the background colour for the header but cant seem to find anything in the css. any help would be appreciated.

http://horrordelta.com/header.PNG

Re: header background colour

Posted: 18 Sep 2019, 18:31
by Benno
Hi,
/media/com_phocadownload/css/main/phocadownload.css
Line: 52

Code: Select all

#phoca-dl-category-box .pd-category h3.pd-ctitle {
	margin: 0;
	padding: 5px;
	background: #fafafa;
	border: 1px solid #e9e9e9;
	margin-bottom: 7px;
}
Change background: #fafafa; to what ever you want or use a custom.css file.

Kind regards,
Benno

Re: header background colour

Posted: 18 Sep 2019, 19:21
by robyn
Thank You! That got me most of the way there. Would you happen to know where the text colour is set?

Re: header background colour

Posted: 18 Sep 2019, 23:08
by Benno
Hi,
add:

Code: Select all

color: white;
to: /media/com_phocadownload/css/main/phocadownload.css Line: 52
So it looks like this example:

Code: Select all

#phoca-dl-category-box .pd-category h3.pd-ctitle {
	margin: 0;
	padding: 5px;
	background: #000000;
	border: 1px solid #e9e9e9;
	margin-bottom: 7px;
	color: white;
}
Change color: white; as you like.
Be aware your changes will be overwritten by the next Phoca Download update.
So it's better to use a custom.css

Kind regards,
Benno

Re: header background colour

Posted: 19 Sep 2019, 00:56
by robyn
Thanks for the pointers. I have created a custom css. Appreciate all the help.

Re: header background colour

Posted: 19 Sep 2019, 07:55
by Benno
You're welcome!

Kind regards,
Benno