Hello and thanks in advance.
I hope this is the right place to post a message as follows:
I need to insert an image and I need the image to be align to the left and to have some space around it so that the text wraps around it nicely.
So this is what I have:
<img src="images/horse_small.jpg" width="228" height="217" [b]hspace="10" vspace="10"[/b] border="1" align="left" />
Now because the text around has the following attributes in the CSS file I do not get any vertical or horizontal space (hspace=“10” vspace=“10”) around the image:
.text_normal{
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
color: #000000;
text-decoration: none;
text-align: left;
padding:0px 10px 0px 18px;
text-align:left;
}
How do you suggest me to modify the CSS so that I have the space around the image and the text wraps around it nicely?
Hope this makes sense…
Thanks/Regards