Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Build a Simple PHP Application Adding a Contact Form Creating Input Fields

Alemneh Asefa
Alemneh Asefa
9,503 Points

Input aligning all the way to the right of the page

For some reason my input field is aligning all the way to the left of the contact page instead of in the middle like the example.

<?php 
$pageTitle = "Contact Mike";
$section = "contact";
include('inc/header.php'); ?>

    <div class = "section page">

        <h1>Contact</h1>

        <p>I&rsquo;d love to hear from you! Complete the form to send me and email.</p>

        <input type="text">

    </div>

<?php include('inc/footer.php'); ?>

1 Answer

Greg Kaleka
Greg Kaleka
39,021 Points

Hi Alemneh,

You're missing the div class="wrapper" tag (and closing tag, of course). Take another look at the video. Try adding that, and see if that fixes it!

-Greg