
Originally Posted by
Lordzoabar
Ok, I'm seeing the page now. When I loaded it in yesterday and went to that link, it just came back saying "page not found".
Now I just need to figure out how to fix the page layout. I assume it's because it's not playing nice with our template.
You just need to add some breaks to the form. Just a screen size thing...
Code:
<div id="contact-col-left" class="back">
<label class="inputLabel" for="contactname"><?php echo ENTRY_NAME; ?> <?php echo '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?></label>
<?php echo zen_draw_input_field('contactname', $name, ' size="40" id="contactname"'); ?>
<br class="clearBoth" />
<label class="inputLabel" for="email-address"><?php echo ENTRY_EMAIL; ?> <?php echo '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?></label>
<?php echo zen_draw_input_field('email', ($email_address), ' size="40" id="email-address"'); ?>
<br class="clearBoth" />
<label class="inputLabel" for="subject" ><?php echo ENTRY_SUBJECT; ?> <?php echo '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?></label>
<?php echo zen_draw_input_field('subject', ($email_subject), ' size="40" id="subject"'); ?>
</div>
Someone pointed out that chrome had issues and to use div tag instead of br... I have Chromium which doesn't have that problem so I'm unable to test.
Code:
<div class="clearBoth"></div>
Bookmarks