Changing color on href link

Premium, Furniture Joomla Design Shop Template with K2Store support
GK User
Thu Mar 15, 2012 1:55 am
I'm trying to change the grey color of href link used by default. Does someone knows where it is.

Regards,
User avatar
Fresh Boarder

GK User
Thu Mar 15, 2012 11:02 am
You can override all links colors in file override.css, there you can find you code like :

Code: Select all
a {color: #value !important}


and then only remember to enable 'Use override CSS' option in template settings.
User avatar
Platinum Boarder

GK User
Thu May 24, 2012 6:53 pm
That doesn't work for me. The color stayus the same. How can I change ALL href link texts permanently into another color, even when you don't hover over them?
User avatar
Fresh Boarder

GK User
Thu May 24, 2012 7:04 pm
I found the solution :

In ../templates/gk_black_and_white/css/style1.css change line 14 to

a { color: #your color; }

If you want to change the hover color too, change line 15 to

a:hover, a:active, a:focus { color: #your color; }
User avatar
Fresh Boarder

GK User
Fri May 25, 2012 11:54 am
Please give me site URL, this code should work but maybe in your particular case there is some problem, url make this much easier.
User avatar
Platinum Boarder

GK User
Mon Aug 20, 2012 2:18 pm
Code was missing " ; " --> it works:


a {color: #00FF00; !important}

Thanks,
Ed
User avatar
Fresh Boarder

GK User
Mon Aug 27, 2012 8:59 am
No, any ';' was missing, please check proper declaration with !important http://www.impressivewebs.com/everything-you-need-to-know-about-the-important-css-declaration/

The code that you have insert in last post is incorrect - in parsing process the '!important' declaration will be omitted because of ';' before.
User avatar
Platinum Boarder


cron