Kayu999
Member
Posted 7 months ago #
I downloaded the zip file installed it and everything is going fine then i realized i would like to change the default link color from blue, to umm i dunno, maybe green and underlined.is that java script? any help is appreciated, ty
http://wordpress.org/extend/plugins/wp-core-contributions-widget/
There's nothing in the plugin setting the color of your links. The link color is 100% defined by your active theme. If you want to change just the widget's link color, then add the following to your theme's stylesheet:
.widget_core_contributions a {
color: green;
text-decoration: underline;
}