Images seem to be placed inside tags by default. Wierd.
Let's say I need to have a paragraph of 500px on the left and an image on the right. Usually I would do this simple css...
p { float : left ; width : 500px ; }
img { margin-left : 500px ; }
However, with Joomla!, because the tag is placed inside a tag, the image itself is also floated left. So I have to do this.....
p { float : left ; width : 500px ; }
p.right { float : none ; margin-left : 500px ; }
But that means coding css into the article. Really frustrating.
Whoops, I meant the image tag is placed inside a paragraph tag!!!!!!!!!!
So the image inherits the paragraph styles.
I should have strip-slashed the html tags in my question, sorry.