How to change the color of the 'recent posts' subjects & 'older posts' text.

Hello,

First of all thank you for the amazing theme. It’s my first time ever ‘building’ a website and you make it so much easier.
Since I’m new on all this css code/making a website stuff, i really hope you can help me out. Suddenly the recent posts text is blue, even as the ‘older posts’ text and instagram text as shown in the right sidebar widget. I’ve managed to change the text color of the posts and subjects on the homepage but somehow i can’t find the solution for turning the recent posts widget into black. Can you help me out? (see screenshot)

Hi @charlottew,

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

Could you please share me your site URL where it’s displaying so that i can help you to achieve it?

Kind Regards,
Movin

Hi Movin, Thanks for answering! I somehow found an old post of someone who had a kind of similair question and managed to change it in the other/ custom css area with the following code: #secondary .activello-recent-posts a {
color: #000;
}

So many thanks! If you maybe have any tips left on how to change the footertext from ‘theme from wordpress by colorlib’ it would be great!
Is that also possible in the other/custom css area?

Thanks again for your time and help. www.the-sweet-escape.nl

Kind regards, Charlotte

So many thanks! If you maybe have any tips left on how to change the footertext from ‘theme from wordpress by colorlib’ it would be great! Is that also possible in the other/custom css area?

To achieve this just download the child theme child-theme-105.zip shared in this reply https://colorlibsupport.com/t/modify-footer-for-mobile-version/#post-53854

That custom child theme of Activello theme that contains following custom code in the functions.php file so just edit the text in this file to whatever you want to.

function custom_activello_footer_info() {
global $activello_footer_info;
  printf( esc_html__( 'Theme by %1$s Powered by %2$s', 'activello' ) , '<a href="https://colorlib.com/" target="_blank">Colorlib</a>', '<a href="http://wordpress.org/" target="_blank">WordPress</a>');
}