2013-01-10, 00:28:47
Currently when an image is inserted to the page, GetSimple uses an image tag something like this:
I suggest that the inline CSS be removed and something like this used instead:
The CSS class for float: right; is shown as class="floatright". If image would be floated to left, the class could be class="floatleft".
Code:
<img alt="Image's alt text." src="http://www.path.to/image.jpg" style="width: 200px; height: 150px; float: right;" />
I suggest that the inline CSS be removed and something like this used instead:
Code:
<img alt="Image's alt text." src="http://www.path.to/image.jpg" width="200" height="150" class="floatright" />
The CSS class for float: right; is shown as class="floatright". If image would be floated to left, the class could be class="floatleft".