I'm trying to achieve something like this:
[CENTER IMAGE] [RIGHT IMAGE]
Here's an image example of what I mean: http://prntscr.com/a9vuxv
I have applied the following code, but it puts both images on the right and my aim is to put one image in the center and one on the right:
<div style="width: 100%;">
<div style="float: right;">
<img src="centerimage.png" />
</div>
<div style="float: right;">
<img src="rightimage.png" />
</div>
</div>