How to change color of links on pages with css
-
I’m using bouquet theme. How do I change color of links on the pages
The blog I need help with is: (visible only to logged in users)
-
Hi!
There are lots of links, but if I understand you, I think this could help you:
article a {
color: rgb (255,0,255);
}Tell me if this is Ok.
-
No, that did not work. Mainly I want the linked statement (for instance, click here for registration form) to be a different color. Right now it’s the same as the page text.
-
Hi again.
The problem is the space between “rgb” and “(255,0,255)”. Sorry for that. Please, try without it:
article a { color: rgb(255,0,255); }:)
-
-
-
Can I ask another question – how can I increase the font size of the widget titles in my sidebar? schenectadyrose.org thank you.
Christine
-
Christine, add the following and adjust as desired. It was originally 11px.
.wf-active .widget-title, .wf-active .widget-title a { font-size: 16px; } -
-
- The topic ‘How to change color of links on pages with css’ is closed to new replies.