Hey there,
Please find the response to your inquiries below:
1. To edit the text "Related Posts", you can do so in the language file. Edit the file /language/en-GB/en-GB.com_easyblog.ini and locate the codes below,
COM_EASYBLOG_RELATED_POSTS="Related Posts"
2. You need to add the block of css codes below into your template's css file,
body .eb-related-title a,
body .eb-related-title a:link {
text-decoration: none !important;
}
body .eb-related-title a:hover {
text-decoration: underline !important;
}
3. This is a sample code but you should modify it accordingly
body .eb-related-title a{
font-size: 14px !important;
line-height: 150%;
}
4. To remove the category, you can add the block of css codes below:
body .eb-entry-related div > div.text-muted {
display: none;
}