Colors and styles

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Nov 12, 2012 5:03 pm
Reply with quote
Report this post
Hi,

I have chosen the Color II in the template manager, but i want the site to be a specific blue instead of the purple. I have changed all i could in the style2.css file, but i couldn't change some of the colors.

It's the purple background behind sponsors, the purple countdown text, and the grey text next to "Register Now".

The purple would i like be a specific blue - #0f4198
The grey would i like to have in white.

How do I do this?

Thanks!
Screen Shot 2012-11-12 at 4.57.32 PM.png
User avatar
Fresh Boarder

GK User
Tue Nov 13, 2012 12:33 pm
Reply with quote
Report this post
Hi,

the sponsors background is specified in the style2.css in this fragment:

Code: Select all
#gkHeaderBottom {
background: #7D76A1;
}


the counter is geting colour from this rule:
Code: Select all
.gk-jscounter > div > strong {
color: #A59CD2;
}


you can check the colors origin using the Firebug for Firefox or Chrome Developer Tools on Chrome.
User avatar
Administrator

GK User
Tue Nov 13, 2012 2:19 pm
Reply with quote
Report this post
dziudek wrote:Hi,

the sponsors background is specified in the style2.css in this fragment:

Code: Select all
#gkHeaderBottom {
background: #7D76A1;
}


the counter is geting colour from this rule:
Code: Select all
.gk-jscounter > div > strong {
color: #A59CD2;
}


you can check the colors origin using the Firebug for Firefox or Chrome Developer Tools on Chrome.


Thanks a lot! It worked perfectly. How about the grey text, next to the register now button on the attachment?
User avatar
Fresh Boarder

GK User
Tue Nov 13, 2012 2:22 pm
Reply with quote
Report this post
You should add in your style2.css file the following fragment:

Code: Select all
.gk-animation .gk-ticket small {
color: #fff!important;
}
User avatar
Administrator


cron