I'm using the Chunk theme, and I know how to remove the sidebar with the comments completely, but I want to move it to the bottom of my posts. How do I do that?
The blog I need help with is athunderheart.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
I'm using the Chunk theme, and I know how to remove the sidebar with the comments completely, but I want to move it to the bottom of my posts. How do I do that?
The blog I need help with is athunderheart.com.
Here's an example you can start with that will move the post meta data (the date and comments link) from the left side of posts to the bottom of posts in the Chunk theme:
.hentry .main {
padding-bottom: 68px;
}
.hentry .entry-meta {
bottom: 0;
display: block;
font-size: inherit;
float: none;
margin: 0;
padding-bottom: 15px;
padding-left: 15px;
position: absolute;
text-align: center;
text-transform: none;
width: 100%;
}
This topic has been closed to new replies.