"Multiple items selector "
Bootstrap 3.3.0 Snippet by itsrajverma

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="container">
<h2>Multiple items selector </h2>
<div class="row">
<div class="form-group">
<div class="items-collection">
<div class="items col-xs-6 col-sm-3 col-md-3 col-lg-3">
<div class="info-block block-info clearfix">
<div data-toggle="buttons" class="btn-group bizmoduleselect">
<label class="btn btn-default">
<div class="itemcontent">
<input type="checkbox" name="var_id[]" autocomplete="off" value="">
<span class="fa fa-car fa-2x"></span>
<h5>car</h5>
</div>
</label>
</div>
</div>
</div>
<div class="items col-xs-6 col-sm-3 col-md-3 col-lg-3">
<div class="info-block block-info clearfix">
<div data-toggle="buttons" class="btn-group itemcontent">
<label class="btn btn-default">
<div class="itemcontent">
<input type="checkbox" name="var_id[]" autocomplete="off" value="">
<span class="fa fa-truck fa-2x"></span>
<h5>truck</h5>
</div>
</label>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#search {
width:90%;
}
.searchicon {
color:#5CB85C;
}
.items-collection{
margin:20px 0 0 0;
}
.items-collection label.btn-default.active{
background-color:#007ba7;
color:#FFF;
}
.items-collection label.btn-default{
width:90%;
border:1px solid #305891;
margin:5px;
border-radius: 17px;
color: #305891;
}
.items-collection label .itemcontent{
width:100%;
}
.items-collection .btn-group{
width:90%
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: