Thank you for taking a look at my question.
I'm using Bootstrap and I'm sure there's an easy solution to this, please help!
So All I'm trying to do here is add a dropdown in a text box, the dropdown consists of several flags and I need the input to be within the text input exactly like this:
What I get instead is a separated dropdown and text input which doesn't look very apealing, visually. kind of like this>
Heres the HTML I have so far:
<div class="form-group" style="margin-top:40px;">
<label for="sms-send"><strong>SEND VIA SMS:</strong></label>
<div class="input-group">
<div class="input-group-btn">
<button type="button" class="btn btn-default btn-outline dropdown-toggle"
data-toggle="dropdown" aria-expanded="false" style="background-color:white; border-right:none;">
<img src="aus-flag.png">
<span class="caret"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li role="presentation"><a href="javascript:void(0)" role="menuitem"><img src="aus-flag.png"></a></li>
<li role="presentation"><a href="javascript:void(0)" role="menuitem"><img src="us-flag.png"></a></li>
<li role="presentation"><a href="javascript:void(0)" role="menuitem"><img src="mexico-flag.jpg"></a></li>
</ul>
</div>
<input type="text" class="form-control" style="border-left:none;">
<span class="input-group-btn">
<button type="submit" class="btn btn-primary btn-green form-control">SEND</button>
</span>
</div>
</div>
I would highly appreciate any help you can give on this! THANKS!

