change font colour

GK User
Fri Jan 20, 2012 9:56 pm
Hi there,

Which file do I have to adjust in order to change font colour on partyfreak template (using style 3)
Example
http://demo.gavick.com/joomla15/mar2010 ... &Itemid=50

text needs to be white like categorie colour.

thanks
User avatar
Junior Boarder

GK User
Sat Jan 21, 2012 12:21 am
This will change normal font color to white color.

You can use override.css by enabling CSS override function from template settings > Advanced or Dev Section then edit /css/override.css and add below code into it.

Code: Select all
body#bd{color:#fff;}


Or by editing files directly use below;
Find File: /templates/gk_party_freak/css/template.css
Find Line: 19
Which is below
Code: Select all
body#bd{color:#696a6a;}

Replace it with below for white color.
Code: Select all
body#bd{color:#fff;}
User avatar
Platinum Boarder

GK User
Sat Jan 21, 2012 1:04 am
Thank u! :D and where to change the colour of the frontpage news image module?

Like on the demo http://www.webpagescreenshot.info/img/7 ... 01220322AM

Again thanks!
User avatar
Junior Boarder

GK User
Sat Jan 21, 2012 2:09 am
Title Link
Code: Select all
div.gk_npro_short_ulwrap ul li h4, div.gk_npro_short_ulwrap ul li h4 a { color: #ffffff; }

Description
Code: Select all
div.gk_npro_short_ulwrap ul li p { color: #ffffff; }


See you around...
User avatar
Platinum Boarder

GK User
Wed Jan 25, 2012 9:52 pm
from ur last post about the news module css it wasn't clear to me which css file?
the same template.css?
User avatar
Junior Boarder

GK User
Thu Jan 26, 2012 10:01 am
It is a best practice to use your custom css codes in "templates/gk_template_name/css/override.css" file.
This way in future updates you only need to keep "override.css" file backup then you can upload new versions of your template, copy back "override.css" file. So you wont loose your css changes.

When overriding css any last normal css codes that gets loaded will overwrite previous css codes. So enable CSS Override feature from "Template Settings > Advanced Features" and enter below codes in there.

See you around...
User avatar
Platinum Boarder

GK User
Thu Jan 26, 2012 10:19 am
Ok do I have to enter the code on joomla backend or edit the file override.css on the server?
User avatar
Junior Boarder

GK User
Fri Jan 27, 2012 12:59 am
Edit file override.css with any text editor.
User avatar
Platinum Boarder


cron