Phoca Rhein - Theme color, Background color

Phoca Templates - templates for Joomla! CMS
xim
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 21 Sep 2014, 22:49

Phoca Rhein - Theme color, Background color

Post by xim »

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
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 47810
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Phoca Rhein - Theme color, Background color

Post by Jan »

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 :idea:

Jan
If you find Phoca extensions useful, please support the project
xim
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 21 Sep 2014, 22:49

Re: Phoca Rhein - Theme color, Background color

Post by xim »

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
Image

There is themes_rtl.css but I can`t find there any solution for my problem.
User avatar
Benno
Phoca Hero
Phoca Hero
Posts: 9094
Joined: 04 Dec 2008, 11:58
Location: Germany
Contact:

Re: Phoca Rhein - Theme color, Background color

Post by Benno »

Hi,
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;
}
to:

Code: Select all

a:link {
    color: #000000;
}
Kind regards,
Benno
xim
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 21 Sep 2014, 22:49

Re: Phoca Rhein - Theme color, Background color

Post by xim »

Ohh... I realise that I can use ftp to edit that files...

Thanks for your all answers!

Greetings
Simon
User avatar
Benno
Phoca Hero
Phoca Hero
Posts: 9094
Joined: 04 Dec 2008, 11:58
Location: Germany
Contact:

Re: Phoca Rhein - Theme color, Background color

Post by Benno »

Hi,
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;
}
to:

Code: Select all

#phoca-site {
    background: none repeat scroll 0 0 #ffa31e;
}
Kind reards,
Benno
Post Reply