Clock icon
- The topic ‘Clock icon’ is closed to new replies.
Need help? Check out our Support site, then
I want to get rid of the little clock icon on post pages: https://needleart.org/2018/11/01/the-best-needlearts-class-ever-part-1/
To get rid of author data I used the following in the CSS:
.icon-time, .posted-on, .byline {
display: none;
}
.post-author p {
float: left;
}
What can I add to make the clock go away and fix the padding?
The blog I need help with is: (visible only to logged in users)
Try adding this:
.fa.fa-clock-o {
display: none;
}
Perfect. Thank you!