Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <div class="input_wrap">
  2. <input type="text" title="money" class="input_text price" name="amount"
  3. onkeyup="this.value=this.value.replace(/[^d]/,'');
  4. this.value=make_price_format(this.value);"
  5. onblur="this.value=this.value.replace(/[^d]/,'');
  6. this.value=make_price_format(this.value);">
  7. <span class="unit">Euro</span>
  8. </div>
  9.  
  10. #register_apply .apply_table .input_wrap span.unit
  11. {
  12. vertical-align:middle;
  13. text-align:center;
  14. padding-top:30px;
  15. margin-top:30px;
  16. font-size:22px;
  17. color:#646464;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement