There are many ways to do this in CSS according to many answers. If I could guess, since the name of the image in your example is connected with iconography of a slightly different approach:
#OverviewText4 { position: relative; } #OverviewText4:before { content: ""; background: transparent url(MoneyIcon.png) scroll no-repeat 0 0; background-size: cover; width: 150px; height: 150px; position: absolute; display: block; top: 50px; left: 50px; }
https://jsfiddle.net/zk8su1qw/
That way you donβt even need the img tag in HTML, which is desirable if its just a presentation.
This answer also has the assumption that you want the image to appear on top of any content in the OverviewText4 div, and not have a stream of content around the image. If this is not the case, you would like to use the fields and save the position: static or relative image.
source share