在我的节点页面上,我有用CSS样式化的注释表单,问题是当我提交此表单并且表单抛出错误时,我的所有CSS都消失了,我想这就是我整个包装器消失的原因(我在包装模板中设置的div消失了
注释块也移到页面底部,紧挨着页脚
这是我的包装器,对于注释,我没有做特别的事情,它只是默认的
<div id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>>
<?php if ($content['comments'] && $node->type != 'forum'): ?>
<?php print render($title_prefix); ?>
<h2><?php print t('Avis de nos clients'); ?></h2>
<?php print render($title_suffix); ?>
<?php endif; ?>
<?php print render($content['comments']); ?>
<?php if ($content['comment_form']): ?>
<h2 class="title comment-form"><?php print t('Add new comment'); ?></h2>
<?php print render($content['comment_form']); ?>
<?php endif; ?>
</div>
我该怎么办?