Module colours

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
Sun Sep 07, 2014 5:06 pm
Reply with quote
Report this post
Hi,

I would like to know where I can change the module background colour. PFA the snip for reference.

Thanks
User avatar
Fresh Boarder

GK User
Sun Sep 07, 2014 7:48 pm
Reply with quote
Report this post
Hi,
If we talk about light gray background color,
by default css code look like this:
Code: Select all
#gkBottom1, #gkBottom3, #gkBottom5 {
    background:  #f8f8f8;
}


You have to override this style I mean bag color. How? check my footer link(s).
User avatar
Platinum Boarder

GK User
Mon Sep 08, 2014 1:44 pm
Reply with quote
Report this post
Thanks a lot.
User avatar
Fresh Boarder

GK User
Sun Sep 28, 2014 5:51 am
Reply with quote
Report this post
Hi There,

I am trying to add some effects to K2 tag cloud (copied from creativity theme). But I am not able to change the text colour to white. Here is the css overide :

.k2TagCloudBlock a {
font-size: 11.96px;
display: block;
color: #fff;
float: left;
padding: 3px 6px;
margin: 0 5px 5px 0;
border-radius: 3px;
background: #5990D5;
}
.k2TagCloudBlock a:hover {
background: #444;
-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
-o-transition: all 300ms linear;
-ms-transition: all 300ms linear;
transition: all 300ms linear;
}
#gkSidebar .box {
color: #33CC33;
}

And here is the link : http://sharavega.com/mag/index.php/lounge

I just need the text colour to be white....

Thanks
User avatar
Fresh Boarder

GK User
Sun Sep 28, 2014 7:57 am
Reply with quote
Report this post
Use
Code: Select all
.k2TagCloudBlock a {  color: #fff !important; }
User avatar
Platinum Boarder

GK User
Sun Sep 28, 2014 8:11 am
Reply with quote
Report this post
Wow.....Worked like magic!

Thanks a lot! :)
User avatar
Fresh Boarder


cron