Hiding blog post date and details
-
Could you let me know what css is headed to hide the right-hand section of each blog post? I.e. the area which has the square blog icon, posted date, category and comments? Also, does anyone know if there is a way that the posts can then be shifted over to the right more? Thank you!!
The blog I need help with is: (visible only to logged in users)
-
Sorry that should have said:
Could you let me know what css is needed to hide the right-hand section of each blog post? I.e. the area which has the dark, square blog icon, posted date, category and comments? Also, does anyone know if there is a way that the posts can then be shifted over to the right more? Thank you!!
-
Hi there,
You can use the code below to hide the section on the left:
.post-details { display: none; }To move the posts to the right, you can add this code:
.hentry.post .entry-content { float: right; }Let me know this doesn’t work!
-
- The topic ‘Hiding blog post date and details’ is closed to new replies.