I am trying to add space between my Form Input and the Upload Picture button, but it's not working?!
Here is a snippet...
Code HTML4Strict:<!-- UPLOAD PHOTO FORM --> <form id="uploadPhoto" action="" method="post"> <fieldset> <legend>Upload a Photo</legend> <!-- User Photo --> <label for="userPhoto">Filename:</label> <input id="userPhoto" name="userPhoto" type="file" /> <?php if (!empty($errors['upload'])){ echo '<span class="error">' . $errors['upload'] . '</span>'; } ?>
Code CSS:/* UPLOAD PHOTO Styles */ input#userPhoto{ padding: 0 10em 0 0; }
What am I doing wrong?
Debbie



Reply With Quote








Bookmarks