Figured it out. The following CSS can be used to change the colour of the post title links on the homepage:
#primary-main h2.entry-title a {
color: #F6F6F6;
}
Thanks JanHoekdotCom. Unfortunately that didn’t work on my website for some reason. I can change the background-color fine but the color of the font will still not change.
Thanks also esmi, although I already use a custom CSS plugin for any modifications.
Hi OB,
The following CSS code will remove the icon:
.fa-user {
display: none;
}
And if you wish to remove the author name without the plugin, the following CSS will do that:
.vcard {
display: none;
}
Hope this helps.