@MitchW Yes, for the width part. However, the align part with images doesn't work like you might think. You might consider adding float: right;
. That'll move it right and make text wrap around it. You'll also probably want to add something like padding: 5px 0 5px 5px;
to give the image a little breathing room too.
If you're only wanting to align it right and not have text wrap, try this (I'm doing it from a phone, so not putting everything through proper paces right now):
div style="text-align: right;"
<img src="image.jpg" style="width: 200px;">
/div
(You'll need brackets around the div
elements but M.b doesn't display the code right if I put them in.)