Removing Date from Post Header and Moving to Bottom
-
How about moving the date line to the bottom of a post instead of appearing on top.
You know like “Posted on” xxx by down the middle blog.
Using Blaskan.
Thanks to the WordPress people for all your helpful answers when I’ve submitted. Much appreciated!!
The blog I need help with is: (visible only to logged in users)
-
For a partial answer see here https://en.forums.wordpress.com/topic/removing-post-date-time-tags-categories-from-blaskan-theme?replies=4
For the possibility of finding other answers search the Blaskan threads. -
P.S. Here’s the link to the Blaskan stylesheet. https://wpcom-themes.svn.automattic.com/blaskan/style.css Please be patient while waiting for a Volunteer who helps with CSS editing or Staff to assist you.
-
You can use absolute positioning for that.
Here is an example of that will move the date to the bottom of posts in the Blaskan theme. You can add it to your Appearance > Customize > CSS editor:
.type-post { position: relative; } .type-post header time { position: absolute; bottom: 40px; } .type-post footer { margin-top: 40px; }Adjust the margin and bottom values to change the spacing if needed.
- The topic ‘Removing Date from Post Header and Moving to Bottom’ is closed to new replies.