delete the date beside blog postings
-
How do I delete the date beside blog postings? Or at least make it less noticeable/offensive than what I have? It creates a vertical white space, and I would rather just widen the text to use that vertical wide space.
-
Hi there,
You can use the CSS code below to hide your post dates:
.wf-active .post-date { font-style: normal; display: none; }Just copy/paste it into the bottom of the CSS section here:
https://patprofitdotnet.wordpress.com/wp-admin/customize.php
Also, we have a forum for CSS customization here:
-
Hi D,
Thanks for the prompt response. That code worked.
It will take me a while to get up to speed on CSS. I went poking around but could not find a few things. Two quick follow up questions.
1. How do I move the main text left into the vertical space where the date was?
2. How do I get rid of:
a) “Posted by willplut in Advanced Topics” under the Post Title in the main window?
b) “≈ Leave a Comment” under the Post Title in the main window?Thanks again.
Cheers,
–Will -
Hi Will,
I’m glad that worked for you.
The code snippets below can be applied into the same CSS area.1. How do I move the main text left into the vertical space where the date was?
.wf-active .post-title h1 {padding-left: 0px;}2. How do I get rid of:
a) “Posted by willplut in Advanced Topics” under the Post Title in the main window?
b) “≈ Leave a Comment” under the Post Title in the main window?.wf-active .post-info {display: none;}Let me know if that takes care of things for you.
- The topic ‘delete the date beside blog postings’ is closed to new replies.