Can anyone help me troubleshoot the issue with my count text on a div block? It seems to be affected by changes in screen size.
Normal
https://i.stack.imgur.com/RZkgr.png
On screen resize
https://i.stack.imgur.com/hTdCG.png
The Code:
span.right-corner{
position: relative;
float: left;
left: 250px;
bottom: 25px;
width: auto;
}
div.top-block{
position: relative;
float: left;
left: 240px;
bottom: 40px;
width: auto;
}
<div class="col-sm-4">
<div class="top-block">
<div class="huge"><i class="fa fa-book"></i></div>
</div>
<div class="well">
<span class="badge right-corner">${count}</span>
<h4>Archive</h4>
<a class="watcher" href="/edocs/main/archive/${offnoteType}"></a>
</div>
</div>