Pique theme, dates on blog title
-
Is there a way to get dates of my blog posts to show up next to the title? The date is shown once you open the post but not on the menu page that lists all the posts.
The blog I need help with is: (visible only to logged in users)
-
Hi, this would require Custom CSS, which is a feature of the WordPress.com Premium Plan and WordPress.com Business plan upgrades.
You can try out and preview custom CSS before you buy as explained here. This would be the CSS needed to make the entry meta data appear on the blog/category/archive pages and move it up beside the title.
@media screen and (min-width: 700px) { .blog .entry-meta { display: block; position: absolute; top: 90px; } .blog .entry-content { position: static; } .blog pique-panel-content { position: relative; } .blog .entry-meta .edit-link { display: none; } }I should mention that this is doable in the Pique theme since the meta data div is there, but hidden by design. In many themes that do not show the date with the excerpt on the blog page, the div does not actually exist in the HTML, so it cannot be made visible or added.
- The topic ‘Pique theme, dates on blog title’ is closed to new replies.