Forum replies created
Thanks for the help Imran. I really appreciate it. The extra custom CSS formatting helped get it back to look like the other posts as well which is what I wanted.
I removed the thumbtack as well for the sticky post and added the hover selector for sticky posts to match the other posts.
This code shows the hover selector for the social sharing icons and the tags on the left of the post.
.entry-footer .share-this a:hover {
color: #EB4200!important;
}
This is the code I used to remove the thumbtack in the top right of the sticky post. The First part is to remove the grey background and then the second part of the code blends in the remaining white thumbtack with the background. It may not be the cleanest way but the only way I found that worked.
.home .type-post.sticky:before, .home .formatted-post:before, .page-template-blog-page-php .type-post.sticky:before, .page-template-blog-page-php .formatted-post:before {
background: none!important;
}
.home .type-post.sticky, .home .formatted-post, .page-template-blog-page-php .type-post.sticky, .page-template-blog-page-php .formatted-post {
color: F9F9F9!important;
}
Thanks again for your quick response and help! =)