How do I remove this dot "·" from the "updated" time stamp on article pages? [Archive] | Community
Skip to main content

How do I remove this dot "·" from the "updated" time stamp on article pages? [Archive]

  • May 4, 2021
  • 3 replies
  • 0 views

I'm trying to customize the default "Copenhagen" theme to remove this little dot from the time stamps on my article pages (so it just reads "Updated 13 days ago" for example).

 

I did a search for the character "·" in the CSS file and deleted every line in which it appears, and but somehow it still shows up on the article page. Anyone know how to get rid of this? 

3 replies

Ifra
  • May 5, 2021

Hey Tom,

You just need to add this CSS at the bottom of your stylesheet.

 

.article-author .meta-data:not(:last-child)::after{
content:'';
margin:0
}

 

Team


Dave12
  • May 5, 2021

Thanks Ifra!


  • Author
  • May 5, 2021

Wow, thanks @ifra! This is why I love the ZD community!