• This is probably an easy fix, but i can’t find a way to fix it.

    There is some space between the ‘name’ box and the ’email’ box in my comment form. I want it gone.

    Code from comments.php:

    <div id="form-section-author" class="form-section">
        							<div class="form-label"><label for="author"><?php _e('Navn', 'thematic') ?></label> <?php if ($req) _e('<span class="required">*</span>', 'thematic') ?></div>
        							<div class="form-input"><input id="author" name="author" type="text" value="<?php echo $comment_author ?>" size="30" maxlength="20" tabindex="3" /></div>
                                </div><!-- #form-section-author .form-section -->
    
                                <div id="form-section-email" class="form-section">
        							<div class="form-label"><label for="email"><?php _e('E-post', 'thematic') ?></label> <?php if ($req) _e('<span class="required">*</span>', 'thematic') ?></div></div>
        							<div class="form-input"><input id="email" name="email" type="text" value="<?php echo $comment_author_email ?>" size="30" maxlength="50" tabindex="4" /></div>
                                </div><!-- #form-section-email .form-section -->
    
                                <div id="form-section-url" class="form-section">
        							<div class="form-label"><label for="url"><?php _e('Nettside', 'thematic') ?></label></div>
        							<div class="form-input"><input id="url" name="url" type="text" value="<?php echo $comment_author_url ?>" size="30" maxlength="50" tabindex="5" /></div>
                                </div><!-- #form-section-url .form-section -->

    Any ideas?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Unwanted empty space in comment form’ is closed to new replies.