Added author name, social media buttons at the side of the article
- The topic ‘Added author name, social media buttons at the side of the article’ is closed to new replies.
Need help? Check out our Support site, then
Hi! I’m wondering if the author’s name, social media buttons and published date could be squeezed to the side of the article than at the bottom?
See below URL for an example.
Thank you. :)
Regards,
Mark Ko
The blog I need help with is: (visible only to logged in users)
Hi Mark,
Give this CSS a try:
@media only screen and ( min-width: 1024px ) {
.blog-post-single-meta {
float: left;
width: 150px;
padding: 0;
margin-right: 20px;
border: 0;
}
.blog-post-single-meta-info > span {
display: block;
margin-bottom: 15px;
float: none;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}
.blog-post-single-meta-social {
float: none;
text-align: left;
}
.blog-post-single-meta-social .blog-post-share {
float: none;
}
.blog-post-single-content {
overflow: hidden;
}
}