How to change font at related posts

Hey,

I would like to change the title “related posts” in the post and also the title of every post in this widget. Is that possible?
I am using plugin Jetpack for related posts.

Thank you so much.

Hi @lucie,

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

You can try achieving this by using the custom code solution shared in the following pages.

Best Regards,
Movin

Hi,

is it possible to change the font just by adding some css in customizing my website? I am looking for the easiest way. Since I am beginner with wordpress I do not know how to change the other codes.

Thank you so much.
L.

You can try changing its font by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS


#jp-relatedposts {
    font-family: arial;
}

Please change the font family arial in the above code to whatever you want to set.

Great. Thank you so much. It worked!

Anyway I would like to change the hover color. It is purple now and I would like to have no color of the hover if you know what I mean. Any ideas?

To remove hover color please use the below CSS code.

#jp-relatedposts a.jp-relatedposts-post-a:hover {
    background: none;
    color: #a161bf;
}