How to add in-line before element to ethos entry title

Hi there,
I’m trying to add icons according to the post type to my blog. I am able to add the icon, but I can’t get it in line with the title. So far, I’ve only done the standard entries, so you can see this on some of the articles… the little article icon is above the headline and for the life of me I can’t find a way to keep it from stacking. https://statmedlearning.com/category/test-taking-strategies/

Here’s my CSS:
.format-standard .h-entry-cover:before {
font-family:‘FontAwesome’;
content:"\f15c""\00a0";
}

Hi @jacvodden,

Thank you for reaching out to us. To make the icon and title inline, please replace your code with the following:

.format-standard .h-entry-cover span:before {
    font-family: 'FontAwesome';
    content: "\f15c""\00a0";
}

Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.

Hope this helps!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.