DrTrans Posted December 2, 2013 Share Posted December 2, 2013 I want to do something like this: http://gyazo.com/dfee0f77931b6041f6b13ec8aee0effd How do i get the number on top of the image. my code looks like this: <a href="#" class="dropdown-toggle pull-right" data-toggle="dropdown"><img src="iconset/allfriends.png" class="headicon img-circle"><div class"littleNumber"><?php echo $amount; ?><b class="caret"></b></a> Quote Link to comment Share on other sites More sharing options...
DrTrans Posted December 2, 2013 Author Share Posted December 2, 2013 (edited) .littleNumber { position: fixed; font-size: 9px; color: white; font-weight: bold; display: inline-block; background: red; top: 3px; padding-left: 3px; padding-right: 3px; -moz-border-radius:1px 1px 0px 0px; -webkit-border-radius:1px 1px 0px 0px; -khtml-border-radius:1px 1px 0px 0px; border-radius:1px 1px 0px 0px; } Edited December 2, 2013 by DrTrans Quote Link to comment Share on other sites More sharing options...
kicken Posted December 3, 2013 Share Posted December 3, 2013 You need to give the parent <a> tag position: relative so that it becomes a new positioning context. Then you can give the number position: absolute and set it's position as desired. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.