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
header background colour
- Benno
- Phoca Hero
- Posts: 9448
- Joined: 04 Dec 2008, 11:58
- Location: Germany
- Contact:
Re: header background colour
Hi,
/media/com_phocadownload/css/main/phocadownload.css
Line: 52
Change background: #fafafa; to what ever you want or use a custom.css file.
Kind regards,
Benno
/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;
}
Kind regards,
Benno
-
- Phoca Newbie
- Posts: 7
- Joined: 18 Sep 2019, 17:10
Re: header background colour
Thank You! That got me most of the way there. Would you happen to know where the text colour is set?
- Benno
- Phoca Hero
- Posts: 9448
- Joined: 04 Dec 2008, 11:58
- Location: Germany
- Contact:
Re: header background colour
Hi,
add:
to: /media/com_phocadownload/css/main/phocadownload.css Line: 52
So it looks like this example:
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
add:
Code: Select all
color: white;
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;
}
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
-
- Phoca Newbie
- Posts: 7
- Joined: 18 Sep 2019, 17:10
Re: header background colour
Thanks for the pointers. I have created a custom css. Appreciate all the help.
- Benno
- Phoca Hero
- Posts: 9448
- Joined: 04 Dec 2008, 11:58
- Location: Germany
- Contact:
Re: header background colour
You're welcome!
Kind regards,
Benno
Kind regards,
Benno