On your next purchase
On your next purchase
Please enter your Email Address. You will receive a link to create a new password via Email.
Search Results:
Leather mid-heel Sandals
$129.00
Cotton floral print Dress
$40.00
Leather Sneakers
$85.00
Cropped cotton Top
$29.00
Floral print midi Dress
$50.00
Nothing matches your search
😞
Size | US | Bust | Waist | Hips |
---|---|---|---|---|
XS | 2 | 32 | 24 - 25 | 33 - 34 |
S | 4 | 34 - 35 | 26 - 27 | 35 - 26 |
M | 6 | 36 - 37 | 28 - 29 | 38 - 40 |
L | 8 | 38 - 29 | 30 - 31 | 42 - 44 |
XL | 10 | 40 - 41 | 32 - 33 | 45 - 47 |
XXL | 12 | 42 - 43 | 34 - 35 | 48 - 50 |
Size | US | Foot Length |
---|---|---|
36 | 5 | 22.8 |
26.5 | 5.5 | 23.1 |
37 | 6 | 23.5 |
37.5 | 6. | 23.5 |
38 | 7 | 24.1 |
38.5 | 7.5 | 24.5 |
Size | US | Foot Length |
---|---|---|
36 | 5 | 22.8 |
39 | 8 | 24.1 |
40 | 9 | 25.4 |
40.5 | 9.5 | 25.7 |
41 | 10 | 26.0 |
Justo ut diam erat hendrerit morbi porttitor, per eu curabitur diam sociis.
Shopper supports all of Bootstrap's default form styling in addition to a handful of new input types and features.
Bootstrap documentation
Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs, custom selects, and custom file inputs.
Set heights using classes like .form-control-lg and .form-control-sm.
<div class="form-group">
<input type="text" class="form-control form-control-lg" placeholder=".form-control-lg">
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder=".form-control">
</div>
<div class="form-group">
<input type="text" class="form-control form-control-sm" placeholder=".form-control-sm">
</div>
<div class="form-group">
<input type="text" class="form-control form-control-xs" placeholder=".form-control-xs">
</div>
<div class="form-group">
<input type="text" class="form-control form-control-xxs" placeholder=".form-control-xxs">
</div>
Removes top, right, and left borders of a .form-control
.
<div class="form-group">
<input type="text" class="form-control form-control-underline" placeholder=".form-control-underline">
</div>
A slightly modified version of the default input groups that always keeps icons as a part of the form control.
<div class="input-group input-group-merge">
<input class="form-control" type="search" placeholder="Search">
<div class="input-group-append">
<button class="btn btn-outline-border" type="submit">
<i class="fe fe-search"></i>
</button>
</div>
</div>
For even more customization and cross browser consistency, use our completely custom form elements to replace the browser defaults. They’re built on top of semantic and accessible markup, so they’re solid replacements for any default form control.
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="customCheck1">
<label class="custom-control-label" for="customCheck1">Check this custom checkbox</label>
</div>
<div class="custom-control custom-radio">
<input type="radio" id="customRadio1" name="customRadio" class="custom-control-input">
<label class="custom-control-label" for="customRadio1">Toggle this custom radio</label>
</div>
<div class="custom-control custom-radio">
<input type="radio" id="customRadio2" name="customRadio" class="custom-control-input">
<label class="custom-control-label" for="customRadio2">Or toggle this other custom radio</label>
</div>
<select class="custom-select">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<div class="custom-control custom-control-color">
<input type="checkbox" class="custom-control-input" id="customColor1">
<label class="custom-control-label" for="customColor1" style="color: red;">
<span class="text-gray-450">Custom color checkbox / radio</span>
</label>
</div>
<div class="custom-control custom-control-text">
<input type="checkbox" class="custom-control-input" id="customText1">
<label class="custom-control-label" for="customText1">
Custom text checkbox / radio
</label>
</div>
<div class="custom-control custom-control-img">
<input type="checkbox" class="custom-control-input" id="customImage1">
<label class="custom-control-label" for="customImage1">
<span class="embed-responsive embed-responsive-1by1 bg-cover" style="background-image: url(../assets/img/products/product-7.jpg);"></span>
</label>
</div>
<div class="custom-control custom-control-size">
<input type="checkbox" class="custom-control-input" id="customSize1">
<label class="custom-control-label" for="customSize1">XXS</label>
</div>
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="customSwitch1">
<label class="custom-control-label" for="customSwitch1">Toggle this switch element</label>
</div>