Listed in topics: Appearance, Customization, Documentation
Customize Your CSS »Moving Comment Box to the Top
Related
How do I move the comment box to the top of the comment section?
You can use some experimental CSS positioning to put the comment form on top of the comments. This has one flaw, it’ll also position the IntenseDebate logo at the top as well, but other than that it works pretty well.
To make it happen, you need to add the following CSS to your blogs stylesheet (style.css or similar):
#idc-container-parent #idc-container {
position: relative;
padding-top: 320px;
}
#idc-container-parent #idc-container #IDCommentsNewThreadCover {
position: absolute;
top: 0;
left: 0;
}
For more CSS help, check out our CSS Documentation.
Tags: css, layout — Can't find your answer here? Let us know.
Last modified: February 24, 2011 by Michael
Help us improve:
We're always looking to improve our documentation. If this page didn't answer your question or left you wanting more, let us know! We love hearing your feedback. For support, please use the forums or contact support form. Thanks!
You must be logged in to post a comment.