I would like to remove date stamp that appears on posts and also on a category page where posts are listed. How can I safely do this without breaking the theme or ruining the responsiveness?
How can I safely remove the date stamp that appears on single posts?
4 posts from 3 voices-
Posted 1 year ago #
-
Hi mdhsmith,
Try adding this to your custom.css or Quick CSS.
.side-container-inner .minor-meta { display: none; }Regards,
MyaPosted 1 year ago # -
Using
.side-container-inner .minor-meta {
display: none;
}
.side-container-inner {
display:none;
}I've managed to shift the content on both the category pages and single posts. But now the titles don't line up with the left of the page. You can see here http://www.churchrecords.org.uk/graves/
Posted 1 year ago # -
Hi mdhsmith,
It looks like you have things lined up pretty nicely so far. The extra spacing is caused by the theme layout giving an additional class called "offset-by-two" to the H1. If you want to get rid of that and move the title over some more, you can either target the css on the specific page types or edit the template files. The css will be as follows:
#top.archive .post-title.offset-by-two.alpha { padding-left: 0px; }You can change the "archive" to target specific pages or posts/post types if you want but "archive" will target any posts that are sorted by category or tag.
Regards,
Devin
Posted 1 year ago #
Reply
You must log in to post.














