 |
 |
 |
 |
 |
| Author |
Message |
Superdok
Joined: 07 Feb 2008 Posts: 25
|
|
Comments above Comment form |
|
Hi i was wondiring if its possible to put the comments above the comment form. So something like this:
NEWS
COMMENTS
ADD COMMENT
|
|
| Thu Jul 03, 2008 7:55 pm |
|
 |
Guest
|
|
|
Please login to hide the ads.
|
|
|
|
 |
Syrion

Joined: 02 Aug 2006 Posts: 172
|
|
|
|
I think you can do this in the template, the comment sections to be specific? (Can't check it, since one of the first things I do after an install is to remove the comment parts in templates.)
_________________
Mini-me |
|
| Thu Jul 03, 2008 10:35 pm |
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2736 Location: Germany |
|
|
| Fri Jul 04, 2008 1:16 pm |
|
 |
Superdok
Joined: 07 Feb 2008 Posts: 25
|
|
|
|
OK thanks.
Next question. Is it possible to show the comment form beside the comments?
example:
News
Comment Commentform
EDIT 1 : -updated-
EDIT 2: I got it:
In show.inc.php search for
 |  | if ($allow_comments){
include $cutepath.'/inc/show.comments.php';
}
if ($allow_comments and $allow_comment_form){
include $cutepath.'/inc/show.commentform.php';
} |
and replace with:
 |  | if ($allow_comments){
echo '<div id="comment">';
include $cutepath.'/inc/show.comments.php';
echo '</div>';
}
if ($allow_comments and $allow_comment_form){
echo '<div id="commentform">';
include $cutepath.'/inc/show.commentform.php';
echo '</div>';
} |
Then finally youll have to use following CSS Stiles
 |  | #comment {
float:left;
width: 280px; /*Width of left div*/
}
#commentform {
float:right;
width: 285px; /*Width right div*/
} |
|
|
| Fri Jul 04, 2008 3:44 pm |
|
 |
scottdallas

Joined: 04 May 2006 Posts: 1843 Location: US |
|
|
|
So, what you've found from this is that where there's a will there's a way with cutenews.ru 
_________________ www.scottdizzle.com uses cnr
last update: 07-22-08: 8:30 pm |
|
| Tue Jul 08, 2008 7:04 pm |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
|
 |
 |
 |
|