subject line + comment box

Aug 02, 2006 17:27

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... )

Leave a comment

Comments 6

chibisparx August 2 2006, 20:59:39 UTC
I've been having the same problem - I hope someone can help us . . .

Reply

outof_focus August 3 2006, 01:49:50 UTC
Solved! Mike's comment:

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

chibisparx August 3 2006, 01:54:22 UTC
Thanks for making sure I got the comment :) Everything's fixed great now.

Reply


masterslacker August 2 2006, 23:17:46 UTC
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

outof_focus August 3 2006, 01:42:53 UTC
GREAT! I pasted the two lines and my comment pages are working.

Thank you :)

Reply

chibisparx August 3 2006, 01:54:54 UTC
Thank you once again :)

Reply


Leave a comment

Up