PDA

View Full Version : Picture BBcode


Ellendway
06-30-2011, 12:50 PM
Hey,

I'm looking for mod or bb code for the picture. I don't know how I can call it or what's html code, but here is random picture from MS Word. I hope you'll know what I mean.

https://vborg.vbsupport.ru/external/2011/06/4.jpg

Thanks!

kh99
06-30-2011, 01:07 PM
I think what you want is style="float:left" around the picture. We have a bbcode for that with this replacement (we used tag floatl):

<div style="float: left;margin: 10px 10px 10px 0px;">{param}</div>


...but I can't remember where we got it - it might have been posted on this site and/or we may have changed it (I seem to remember putting in the margin thing).

Anyway, the code would then be whateverTEXT TEXT TEXT etc

Jeff Ledger
06-30-2011, 01:39 PM
creat following css


.imgl {
float:left; /* image float to left in content */
width:150px;
}
.imgr {
float:right; /* image float to right in content */
width:150px;
}


then add a new 2 bbcode name it with tag imgl and imgr (search to read more about bbcode, how to add), your bbcode replacement should be st like

<div class="imgl">{param}</div>
and
<div class="imgr">{param}</div>

Ellendway
06-30-2011, 02:23 PM
Thanks guys <3