rmagnes
02-18-2010, 01:12 PM
I need to put some social networking buttons inside of a from. Since these buttons are not form elements how should I go about positioning them? I would really like to use a solution that doesn't involve absolute positioning if possible.
http://current-post.com/qblog/pic.png
HTML:
<div id="leave_comment">
<h2>Leave a Comment:</h2>
<form action="#">
<fieldset>
<legend></legend>
<input type="text" value="Your Name" id="name" class="input"/>
<label for="name">Name Required</label><br/>
<input type="text" value="Your Email" id="email" class="input"/>
<label for="email">E-mail Required</label><br/><input type="text" value="Your Email" id="website" class="input"/>
<label for="website">Website</label>
<textarea rows="15" cols="71">Your Message Goes Here.</textarea>
<input type="submit" value="Submit Comment" class="button" />
</fieldset>
</form>
</div>
http://current-post.com/qblog/pic.png
HTML:
<div id="leave_comment">
<h2>Leave a Comment:</h2>
<form action="#">
<fieldset>
<legend></legend>
<input type="text" value="Your Name" id="name" class="input"/>
<label for="name">Name Required</label><br/>
<input type="text" value="Your Email" id="email" class="input"/>
<label for="email">E-mail Required</label><br/><input type="text" value="Your Email" id="website" class="input"/>
<label for="website">Website</label>
<textarea rows="15" cols="71">Your Message Goes Here.</textarea>
<input type="submit" value="Submit Comment" class="button" />
</fieldset>
</form>
</div>