"Left Title out Snipt"
Bootstrap 4.1.1 Snippet by zeeshan-za-ahmad

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/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://use.fontawesome.com/releases/v5.1.1/css/all.css" integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ" crossorigin="anonymous">
<div class="badge_wrapper">
<ul class="nav">
<li>
<a href="#" onclick="f()" class="btn btn-primary btn-circle btn-xl">
<span class="fas fa-tags"></span></a>
<span class="items-count">
<span class=" notification-counter">123123</span>
</span>
</li>
</ul>
<div class="slide active">
<div class="coupon">
<div class="info">Some more info</div>
<span>09305762180</span>
</div>
</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
29
30
31
32
33
34
35
36
37
.slide{
border: 1px solid red;
position: fixed;
background-color: #eee;
padding: 10px;
right: 79px;
display: none;
bottom: 40px;
max-width: 600px;
max-height: 400px;
overflow: auto;
}
.slide.active {
display: block;
}
.coupon{
display: inline-block;
background-color: white;
padding: 10px;
margin:5px;
text-align: center;
border-radius: 5px;
position: relative;
}
.coupon:hover .info{
display: block;
border:1px solid red;
}
.coupon:active .info{
display: block;
border:1px solid red;
}
.info{
display: none;
position: fixed;
background: white;
padding:10px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
function f(){
$('.slide').toggle('.active');
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: