Recent Topics

1 Jul 25, 2008 20:34    

My b2evolution Version: 2.x

I'm just wondering how I'd go about aligning an image after using the img src tags in a blog post. In my case it always appear to the left, see the picture below.

http://marunchak.co.uk/images/align.jpg

2 Jul 26, 2008 00:09

You can wrap images with

<div class="image_block"><IMG><div>

3 Jul 26, 2008 00:43

Awesome, thanks so much.

<div class="image_block"><IMG>
<img src="http://unity3d.com/unity/whats-new/images/unity2.1/streaming.jpg" />
</div>

4 Jul 26, 2008 00:59

Don't put <IMG> there, I wrote it just as a sample :)

It should be

<div class="image_block">
<img src="http://unity3d.com/unity/whats-new/images/unity2.1/streaming.jpg" />
</div>

5 Jul 26, 2008 01:02

Not sure how that got by me, thanks again. :p


Form is loading...