I use this template all the time, but today the submit button is not working or showing any signs of life - I know it must be simple, but I’ve been staring at it for too long now. Please help!
HTML:
[code]
Request a callback…
<div class="we"> <label for="name">Name:</label> </div> <div class="space"> <input type="text" name="name"/> </div>
<div class="we"> <label for="telephone_number">Telephone Number:</label> </div> <div class="space"> <input type="text" name="telephonenumber"/> </div>
<div class="but"> <input type="submit" value="Submit" name="submit" /> </div>
</form>
</div>[/code]
CSS:
[code].info { width: auto; height: 115px; margin-top: 25px; border: 1px solid #454545; padding: 10px; background: url(images/contactform-back.png) repeat; }
.info a { color: #aae0fa; }
.info a:hover { color: blue; }
.info form { margin: 0; }
.info label { float: left; padding-top: 3px; }
.info h3 { font-family: Arial, Verdana, sans-serif; color: #ccc; font-weight: normal; }
.we { float: left; width: 170px; margin-bottom: 2px; }
.space input { float: left; width: 130px; background-color: #000; border: 1px solid gray; color: #ccc; }
.but { padding-top: 55px; }
.but input { width: 45px; font-weight: bold; float: right; }[/code]