I have setup a jsfiddle of what i\'m trying to do:
http://jsfiddle.net/MgcDU/3936/
#counter { position: relative; } #over { position:absolute
Set your #counter div to display: inline; or add a wrapper with display: inline; and set the max-width of #over to for example 10% (DEMO):
#counter
display: inline;
max-width
#over
10%
#counter { position: relative; display: inline; } #over { position:absolute; left:33%; top:43%; max-width: 10%; }