Removing the post Icon from blog post titles

I am using the Pro theme and I cannot hide the post icon from the title of the posts. I have tried adding the code:

.single .format-standard .entry-title:before {
content: “”;
}

To my CSS, but that does not seem to be resolving the issue.

Hello @RojasConsulting,

Thanks for writing to us.

I would suggest you please add this custom CSS code to the global CSS to hide the post format icon.

.single-post article.post.type-post .entry-title i.x-framework-icon.x-entry-title-icon {
    display: none;
}

The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case if you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

That did it! Thanks!!!

You are most welcome @RojasConsulting

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