Apply a float and margin to the image or box around the image
Add to your css class
.myimage {
float:right;
margin: 5px;
}
or
.myimage {
float:right;
margin: 0 0 5 5; /* for bottom and left margins only */
}
Apply a float and margin to the image or box around the image
Add to your css class
.myimage {
float:right;
margin: 5px;
}
or
.myimage {
float:right;
margin: 0 0 5 5; /* for bottom and left margins only */
}