I have a problem. I use Joomla 1.7.3 and Phoca Rhein 1.0.2 and I want to change color of themes on my site but theres only Green and Blue to choose between. I have read topisc about this problem and I know I need to customize this file (templates/phoca_rhein/themes/green/theme.css) but I don`t know how and don`t know where.
I also want to change general background color of my site (from that grey one) or if it is possible place my logo as background, but don`t know which .css i have to modify.
Greetings
Simon
Phoca Rhein - Theme color, Background color
-
- Phoca Newbie
- Posts: 3
- Joined: 21 Sep 2014, 22:49
- Jan
- Phoca Hero
- Posts: 48386
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Phoca Rhein - Theme color, Background color
Hi, all this is of course possible, but for the changes, you need to have some basic CSS styles.
So yes, if you set e.g. green theme and you want to edit it, the theme.css is the right one CSS for this. But to edit it, you need to know the numbers of the colors and the parts which you want to change. Unfortunately, it is hard to give some advice there as nobody knows which part you want to exactly change, which color, etc.
So for this you need to learn some basic CSS rules or you need to hire someone
Jan
So yes, if you set e.g. green theme and you want to edit it, the theme.css is the right one CSS for this. But to edit it, you need to know the numbers of the colors and the parts which you want to change. Unfortunately, it is hard to give some advice there as nobody knows which part you want to exactly change, which color, etc.
So for this you need to learn some basic CSS rules or you need to hire someone
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 3
- Joined: 21 Sep 2014, 22:49
Re: Phoca Rhein - Theme color, Background color
So let start from the beginning. Here`s my site: http://admalam.pl/ . It is in polish but it doesn`t matter, becouse you can see all of the topics are green. I know how to change it for blue color, but I want simple "black".
Here is what .css files I can edit (image). You can see that there is no /themes/green/theme.css
There is themes_rtl.css but I can`t find there any solution for my problem.
Here is what .css files I can edit (image). You can see that there is no /themes/green/theme.css
There is themes_rtl.css but I can`t find there any solution for my problem.
- Benno
- Phoca Hero
- Posts: 9435
- Joined: 04 Dec 2008, 11:58
- Location: Germany
- Contact:
Re: Phoca Rhein - Theme color, Background color
Hi,
e.g. to change the dates to black:
http://admalam.pl/templates/phoca_rhein ... /theme.css
Line: 38
change:
to:
Kind regards,
Benno
e.g. to change the dates to black:
http://admalam.pl/templates/phoca_rhein ... /theme.css
Line: 38
change:
Code: Select all
a:link {
color: #2db14f;
}
Code: Select all
a:link {
color: #000000;
}
Benno
-
- Phoca Newbie
- Posts: 3
- Joined: 21 Sep 2014, 22:49
Re: Phoca Rhein - Theme color, Background color
Ohh... I realise that I can use ftp to edit that files...
Thanks for your all answers!
Greetings
Simon
Thanks for your all answers!
Greetings
Simon
- Benno
- Phoca Hero
- Posts: 9435
- Joined: 04 Dec 2008, 11:58
- Location: Germany
- Contact:
Re: Phoca Rhein - Theme color, Background color
Hi,
Background color:
http://admalam.pl/templates/phoca_rhein ... /theme.css
Line 7
Change:
to:
Kind reards,
Benno
Background color:
http://admalam.pl/templates/phoca_rhein ... /theme.css
Line 7
Change:
Code: Select all
#phoca-site {
background: none repeat scroll 0 0 #ececec;
}
Code: Select all
#phoca-site {
background: none repeat scroll 0 0 #ffa31e;
}
Benno