Hide trailing/ on Post Meta Date

Hello,

I am using this code to hide the Post Meta Author, Tags, and Comment Link.

.blog .entry-header .p-meta > span:nth-child(1), .single .entry-header .p-meta > span:nth-child(1) {
display: none;
}

.blog .entry-header .p-meta > span:nth-child(3), .single .entry-header .p-meta > span:nth-child(3) {
display: none;
}

.blog .entry-header .p-meta > span:nth-child(4), .single .entry-header .p-meta > span:nth-child(4) {
display: none;
}

How can I hide the trailing / on the Date within my Blog Post Meta?

October 24, 2019 /

https://penny.lainternet.biz/blog/

Thanks,

Micah

Hi @websperations,

Thanks for reaching out.

It should be similar, but this one

.blog .p-meta > span:nth-child(2):after {
     display: none;   
    }

Hope this helps :slight_smile:

Thank you, that did the job.

Micah

You’re most welcome, Micah.

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