Hi Guys, Got too many 'Contact Us' titles... would like to remove the 2nd one please. Also is it possible to add more fields to the form? http://www.shared.sfx-hosting.co.uk/fergussons/contact-us/
1.For your first issue. Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .contact-page h1 { display: none; } 2.For your second issue Go to template-contact.php present in your theme directory and add the code given below Code: <label for="contactName">Enter your text here:<span class="required">*</span></label> <input type="text" id="contactName" name="contactName" value="<?php if (isset($_POST['contactName'])) echo $_POST['contactName']; ?>" class="required requiredField"/> <?php if ($nameError != '') { ?> <span class="error"> <?php echo $nameError; ?> </span> <br/> <?php } ?> <br /><br /> Sending image for reference