Welcome Guest, Not a member yet? Register   Sign In
How to add icons to inputs?
#3

(This post was last modified: 04-13-2023, 12:44 AM by JustJohnQ.)

If you want to prepend or append an icon to a text input, you can use the following code (when using bootstrap):
Code:
<div class="input-group">
   <span class="input-group-addon">@</span>
   <input type="text" class="form-control" placeholder="Username">
</div>
or, although not tested, using the form_input method:
Code:
<div class="input-group">
   <span class="input-group-addon">@</span>
   <?php echo form_input($fielddata); ?>
</div>
Reply


Messages In This Thread
How to add icons to inputs? - by MohinSonanda - 04-12-2023, 10:23 PM
RE: How to add icons to inputs? - by InsiteFX - 04-12-2023, 11:12 PM
RE: How to add icons to inputs? - by JustJohnQ - 04-13-2023, 12:43 AM



Theme © iAndrew 2016 - Forum software by © MyBB