• Welcome to The Cave of Dragonflies forums, where the smallest bugs live alongside the strongest dragons.

    Guests are not able to post messages or even read certain areas of the forums. Now, that's boring, don't you think? Registration, on the other hand, is simple, completely free of charge, and does not require you to give out any personal information at all. As soon as you register, you can take part in some of the happy fun things at the forums such as posting messages, voting in polls, sending private messages to people and being told that this is where we drink tea and eat cod.

    Of course I'm not forcing you to do anything if you don't want to, but seriously, what have you got to lose? Five seconds of your life?

Simple HTML Question

Amaguq

Keyblades kick a$$
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:

example.jpg


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

example2.jpg


If it can't be done in BB that's alright, just HTML then.
 
Can't be done in BB, in HTML you're going to have to float the image.

Code:
<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)
 
Back
Top Bottom