Help

Crimson1

Up-and-Coming Sensation
Joined
Jul 13, 2009
Messages
337
Reaction score
0
FP$
6
I'm trying to make a small box next to my quick reply, i want to use it to add some images or maybe a little flash slideshow. Can anyone help?
pictureyr.jpg
 
What software is that?

Put the reply box into a left aligned div and the new box into a right aligned div with about 15px margin. Max the max-height of the new box no larger than the reply box and the width a static 250px or whatever fits to allow 15px margin. Also add a 3px border with color of, oh say #161616 and leave the background empty.

In other words, wrap the reply box into a <div style="float: left;"></div>. and make a new box with
The new box would be something like this...
Code:
<div style="float: right; border: 3px solid #161616; max-height: 350px; width: 250px; margin: 15px;">
    <div style="padding: 8px;">
        <!--content in here-->
    </div>
</div>

If the body isn't floated, then you'll have problems. I'm not sure how the document is structured so I can't help much, but this should give you an idea.

If you don't know simple css / html then I'm not sure what to tell you.
 
Thanks, that helped 🙂

The mod i'm using is called Olympus_QR. I edited it a bit.

64859538.jpg

Going to try and add a small control panel for a slideshow underneath it. Should look good when its finished.
 
Cool I'm glad I could help a little.

That was a good place to put it too =P
 
Back
Top Bottom