Aligning VALUE in a FORM to the RIGHT

windows

Guest
At this page (<!-- m --><a class="postlink" href="http://www.wepay.com">http://www.wepay.com</a><!-- m -->) I have $2 stuck in the donate amount window but it is not aligning to the right, as i would like. it would look better if aligned flush right. Code in the form...<br />
<br />
Pledge Amt: <b>$</b><input type="text" name="pledge" value="2" size="3" maxlength="7" align="right"><b>.00</b> (suggest $2 minimum)<br><br><br />
<br />
I just stuck that align="right" in there; it didn't work. I just thought it might. Any idea?<br />
<br />
Can I format the "2" inside that window? Like make it red or bold?<!--content--><input style="width:5em; text-align:right; font-weight:bold; color:#f00" type="text" value="2"><!--content-->To align it to the right add style="text-align: right;" to the <input> tag.<br />
<br />
If you want the text red and bold, it will apply to all text in the input box, but you'd just add this: style="color: red; font-weight: bold; text-align: right;"<!--content-->
 
Back
Top