img.leftmargin {
float: left;
margin:.2ex 0ex .2ex 1ex;
padding: 4px; background:#dcc19f;
border: 1px solid #000;
}
then just use <img class="leftmargin"
thats what I use, obviously you will need to play with the margins and padding. All of that assume that you dont have something else controling image placement, also. I dont use that theme, so I dont know whether or not thats the case.
You’d use the CSS property of float: left to make it float left, but you’d have to clear it later on, clear: left is the CSS to do that. So like, add
.imgleft { float: left }
and then
.clearleft { clear: left }
And use <img class="imgleft">, and then something like <br class="clearleft"> at the end of your post.
Curse you Whooami! Stop beating me to the punch!
lol sorry — btw, I dont clear em, works fine for me 😛
Do you use Firefox? ‘Cause clearing is only for IE if I remember right.
Thread Starter
lepus
(@lepus)
1. it worked, but the text is comming right on the picture.
2. Yes, i use firefox.. who dosnt.. 😀
Thanks again 😀
Thread Starter
lepus
(@lepus)
Changed the CSS to
img.leftmargin {
float: left;
padding: 4px;
}
to get the look closer to what i want. Tried changing the padding to 5, 7 and 10 but it moves the picture down when i change it. Any other way of moving the text more to the right side of the picture. (ie. i want more space between the pic and the text )