How To Put The Number At Top Right Corner Of Cart Icon?
I would like to place a number at top right corner of the font awesome cart icon. I have created this simple html.
Solution 1:
This appears to have been answered previously: Shopping cart - number of items in cart CSS
Modified the code to suit your request: http://jsfiddle.net/LhrLe0j6/361/
<i class="fa" style="font-size:24px"></i>
<span class='badge badge-warning' id='lblCartCount'> 5 </span>
CSS:
.badge {
padding-left: 9px;
padding-right: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
border-radius: 9px;
}
.label-warning[href],
.badge-warning[href] {
background-color: #c67605;
}
#lblCartCount {
font-size: 12px;
background: #ff0000;
color: #fff;
padding: 0 5px;
vertical-align: top;
margin-left: -10px;
}
Solution 2:
You can achieve the same thing without the extra span tag using the pseudo elements of the same i
tag. The value can be specified in the value
attribute of the corresponding icon.
.badge:after{
content:attr(value);
font-size:12px;
background: red;
border-radius:50%;
padding:3px;
position:relative;
left:-8px;
top:-10px;
opacity:0.9;
}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<i class="fa badge" style="font-size:24px" value=5></i>
Solution 3:
Warp the elements with a div like this,
<style>
.wrapper{
position: relative;
}
.wrapper span{
position: absolute;
top: -2px;
right: -2px;
}
</style>
<body>
<div class="wrapper">
<i class="fa" style="font-size:24px"></i>
<span> 5 </span>
</div>
</body>
Solution 4:
span{
font-size: 14px;
font-weight: 900;
position: absolute;
border: solid blue;
border-radius: 60%;
height: 14px;
width: 8px;
background:blue;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<i class="fa" style="font-size:24px"></i>
<span> 5 </span>
</body>
</html>
Post a Comment for "How To Put The Number At Top Right Corner Of Cart Icon?"