I have a paid account and it's my first time to use Smooth Sailing.
I am using the
Fresh stylesheet by
exxtent. I only tweaked the colors, fonts, and I inserted the code for the Quick Reply (as posted in this community) but I encountered two problems
(
Read more... )
Comments 6
Reply
The problem you're having is because of some CSS in your stylesheet:
There is a line in the .entryHolder section that says float:left;
That is causing the entry to float to the left, which is pushing the comment box to the right of it. So, if you take that out the stylesheet you should be back to normal.
If you don't feel like digging through the stylesheet, just paste this at the bottom of it and it will override that setting:
.entryHolder { float: none; }
When you do that, and you click the comment link, it should restore. However, you may notice that the comment box stretches out the layout. If you insert this at the end of your stylesheet also, it will keep the comment box to a limited width:
.replyform textarea { width : 450px; }
Summary
Paste these two lines at the end of your stylesheet and it should fix the problems with the comment pages:
.entryHolder { float: none; }
.replyform textarea { width : 450px; }
Mike.
Reply
Reply
There is a line in the .entryHolder section that says float:left;
That is causing the entry to float to the left, which is pushing the comment box to the right of it. So, if you take that out the stylesheet you should be back to normal.
If you don't feel like digging through the stylesheet, just paste this at the bottom of it and it will override that setting:
.entryHolder { float: none; }
When you do that, and you click the comment link, it should restore. However, you may notice that the comment box stretches out the layout. If you insert this at the end of your stylesheet also, it will keep the comment box to a limited width:
.replyform textarea { width : 450px; }
Summary
Paste these two lines at the end of your stylesheet and it should fix the problems with the comment pages:
.entryHolder { float: none; }
.replyform textarea { width : 450px; }
Mike.
Reply
Thank you :)
Reply
Reply
Leave a comment