Page 1 of 1

How to add/change color of links on OC2?

Posted: Sun Feb 07, 2016 1:44 am
by Khal
I am trying to figure out how to add a different color for the links added to any product description. When I look at the code on Firebug it seems the link just use the standard text color, a. I have found how to change the hover color, on line 37 of the stylesheet.

How can I make the links a different color, so that they stand out from the normal text? Do I need to add a new variable, visited?

Thank you!

Re: How to add/change color of links on OC2?

Posted: Sun Feb 07, 2016 2:36 am
by ocart777
simply add this to the end of your stylesheet.css

Code: Select all

/* Product Description Link Color */
#tab-description a {
	color: blue;
}
#tab-description a:hover {
	color: red;
}

Re: How to add/change color of links on OC2?

Posted: Mon Feb 08, 2016 1:29 am
by Khal
Hi

Thanks for that!