Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1375804

    Hi,

    I’m trying to remove the Pencil icon from above the Title of blog posts.

    I’ve tried a few CSS snippets I found on this forum but they seem not to do the trick.

    Thanks,

    Stephen McAteer.

    #1375807

    Hey Stephen,
    Thanks for the link to your site, to remove the pencil icon from the gray square please try this css:

    #top.blog .post-entry .blog-meta .small-preview .iconfont:before {
    	display: none;
    }

    To remove the pencil icon and the gray square try this css:

    #top.blog .post-entry .blog-meta {
    	display: none;
    }

    To pick a different icon to show in the gray box go to the icon element and hover over the icon to want to use to see the Charcode
    2022-12-10_020.jpeg
    and then use it in this css:

    #top.blog .post-entry .blog-meta .small-preview .iconfont:before {
    	content: "\e82a";
    }
    

    2022-12-10_021.jpeg

    Best regards,
    Mike

    #1375809

    Great — it worked.

    Thanks very much Mike. I appreciate it. (I just removed the icon altogether.)

    Cheers,

    Stephen.

    #1375810

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Remove Pencil Icon From Blog Post Titles?’ is closed to new replies.