PDA

View Full Version : Simple HTML Question


Amaguq
08-23-2008, 01:21 PM
I hate to create a whole thread just for this question, but there is no thread that I can post it in. This question is hard to explain, but I'll try my best.

What would I need to write in BB and HTML to do this:

http://i239.photobucket.com/albums/ff109/ookamishounin/example.jpg

Again, this may seem like a simple question, but whenever I type text next to a picture it ends up like this:

http://i239.photobucket.com/albums/ff109/ookamishounin/example2.jpg

If it can't be done in BB that's alright, just HTML then.

opaltiger
08-23-2008, 01:25 PM
Can't be done in BB, in HTML you're going to have to float the image.

<img src="image.png" alt="whatever" style="float:left;">

or, you could make a class in your stylesheet and just give the image that class (I like having .left and .right classes for whatever I need them, anyway)