Changing font colors

I’ve been able to change most of the font colors that I needed to by searching through the support forums, but there are a few that are giving me trouble. Hoping to get a few CSS snippets to change the following:

  1. The font colors of the widget titles.
  2. The font colors of ‘Read More’ at the bottom of each post.
  3. The un-clicked link font color in the ‘About Me’ sidebar widget - would like the ‘Wise Apple Vintage’ link to be a different color.

My current temp address is: ad5.2da.myftpupload.com/

Thanks in advance!

Hi @wiseapple,

I hope you are well today and thank you for your questions.

1. The font colors of the widget titles.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


#page #secondary h3.widget-title {
    color: #000;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

2. The font colors of ‘Read More’ at the bottom of each post.

Use the below CSS code to achieve this.

div.read-more a {
    color: #000;
}
3. The un-clicked link font color in the ‘About Me’ sidebar widget – would like the ‘Wise Apple Vintage’ link to be a different color.

To achieve this use following CSS code.

#secondary .widget.widget_text a {
    color: #A52828;
}

Best Regards,
Movin