• So I am currently working on creating my own website for the first time ever. It will be a blog+. I am a total newbee to this but have come suprisingly far so far!

    Right now I am having trouble with something. I hope someone could help me out with this! Preferably in easy language hehe ?? Some CSS code would be great!

    My issue/wish:

    on my blog page where I have the overview of all my posts, I have the date of the post and the category visible. But they both have this symbol (a calendar and a map) in front of them. Is it possible to delete those symbols, so I’ll have just text?

    Thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello there,

    Add the below CSS code to Appearance > Customize > Additional CSS from dashboard.

    
    .hentry .meta-post span.posted-on,
    .hentry .meta-post span.cat-links {
      padding-left: 0;
    }
    
    .hentry .meta-post span.posted-on:before,
    .hentry .meta-post span.cat-links:before {
      display: none;
    } 
    

    Regards,
    Kharis

    Thread Starter Anouk

    (@anouk197)

    Wow wonderful! Was afraid this wasn’t possible. Seriously everything is possible with CSS it seems, haha! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘delete symbols date and category posts’ is closed to new replies.