Hey there,
Can I see the site? The ccoment-top position is as the name says normally positioned at the top. I belive after the "comments (7)" text.
Ah wait. So is your form on the top? and comments below?
Well, actually you can do a layout override for this file components\com_comment\templates\default\default.php
And mmove the code:
<?php if(count($modules)) : ?>
<div class="ccomment-modules-top">
<?php
foreach ($modules as $module) {
echo JModuleHelper::renderModule($module);
}
?>
</div>
<?php endif; ?>
right before this line:
<div id="<?php echo $htmlId; ?>" class="ccomment row-fluid"></div>
Regards,
Daniel