Archived topic
Replace comments with read time
3 replies · Started by Shailesh on February 7, 2022
Hello Team, I need to replace comments with reading time. Please rectify.
https://blogbias.com/hello-world/
Pic - https://ibb.co/rMxYPys
Hi there,
You are using a block element to add the post meta, so you can simply edit the block element, remove the headline block which holds the comment.
Then add this CSS to position the reading time:
.gb-headline.gb-headline-f9b55781 .gb-headline-text {
display: flex;
}
.single time.entry-date.updated-date {
margin-right: 15px;
}
Thanks, I also need to align with this (dot). Could you please check?
You can try modifying the right padding of the “dot” element on its Block settings to 10px.
See this for reference: https://share.getcloudapp.com/Z4u12yL2
Alternatively, you can try adding this CSS:
div.gb-headline.gb-headline-f9b55781 .gb-icon {
padding-right: 10px;
}
Hope this helps! :)