Trying to hide the Date in the Blog Home page
-
I want to remove the date from showing on my Home page and I want the blog posts to look like the “About page” (full width of the post section with side bar on the right)
Also can we make the pictures fit the full width of the post section as well?
I have the CSS upgrade and I have tried the following that I saw from an earlier post:
.single-post-meta {
display: none;
}Nothing happens…What am I doing wrong.
The blog I need help with is: (visible only to logged in users)
-
Hi there,
You can hide the post date with this CSS snippet:
.post-date { display: none; }
> I want the blog posts to look like the “About page” (full width of the post section with side bar on the right)
> Also can we make the pictures fit the full width of the post section as well?
You could hide the thumbnail box on the left, and adjust the margins of the post so that it appears to take up the full width of that column, but unfortunately it will not display the featured image in the post then.
Sorry that’s not the answer you were hoping for. :\
-
-
Here’s the CSS that would do it:
.post-date-box { display: none; } .entry { margin-left: 0px !important; }
-
-
Can you help me in adding a Home link along with About and Contact in the main menu? I find it not very intuitive to navigate back from an article back to the home page.
-
This tutorial on creating a custom menu should help: https://en.support.wordpress.com/menus/
Good luck!
- The topic ‘Trying to hide the Date in the Blog Home page’ is closed to new replies.