You can remove the small “mystery man” Gravatar by going into your Customizer under Appearance > Customize, and removing the address email from your Gravatar Email field:

Let me know if this does the trick.
Yes, it worked ! Thank you, thank you!!
Can I also you another question?
When I post something (image or video etc.) and I include a title in the post, the title does not appear anymore. It used to when I just downloaded the theme but it somehow changed. Not sure what I can do about it. Do you?
Glad that worked!
When I post something (image or video etc.) and I include a title in the post, the title does not appear anymore.
Could you provide a link to a couple of examples of this so I can take a look directly?
Hi Kathryn,
Here is a link with posts that I have all given titels but they are invisible when uploaded: http://www.365ayo.com/blog/type/video/
Thanks for the example.
Looks like you’ve hidden post titles in your child theme with this CSS:
.entry-header {
display: none;
}
If you remove that CSS in your child theme, the post titles will be displayed again.
If you want to hide certain information in your entry headers but keep other information showing, let me know what you want to hide and what you want to display and I can help you with the CSS if you like.
Thank you for the reply!
I did indeed put this line in the CSS, because I wanted to get rid of the header that displayed the different icons ‘date’, ‘user’ and ‘comment’. I would however, like to keep the post titles. If you can help me out with that, that would be great!
Sure!
To remove the line with the date, poster’s name, and comment link, remove your current custom CSS:
.entry-header {
display: none;
}
.post-date {
display: none !important;
}
and add this instead of the above:
.entry-meta {
display: none;
}
That should keep your post titles visible but hide the elements you don’t want. Let me know if that achieves the effect you’re after.
Thank you Kathryn, it worked !!
I appreciate your time and effort once again. You’re the BEST !
My pleasure, glad this is what you wanted!