Quick-reply ads

Ashley S

Paragon
Joined
Jun 7, 2010
Messages
2,074
Reaction score
34
FP$
501
I have a promotion forum and the quick-reply ads would go great.
What quick-reply Mod does Forum Promotion have?

Thank you.
 
Are you referring to the Features Forums on the side? Or am I mistaken?
 
That's what i am looking for i am looking to make 4 square boxes to put the images in with the links. you no how to do it?
 
Code:
 <div id="message-box" style="float: left;">
                   <textarea style="height: 9em;" name="message" rows="7" cols="76" tabindex="3" class="inputbox"></textarea>
                </div>

    <div style="float: right; width: 160px; text-align: center;">
    http://hybridscloud.com/styles/hC/theme/images/Logo.png
	http://hybridscloud.com/styles/hC/theme/images/Logo.png
	http://hybridscloud.com/styles/hC/theme/images/Logo.png
	http://hybridscloud.com/styles/hC/theme/images/Logo.png
    </div>

Is not working.
 
Code:
<div id="message-box" style="float: left;">
                   <textarea style="height: 9em;" name="message" rows="7" cols="76" tabindex="3" class="inputbox"></textarea>
                </div>

    <div style="float: right; width: 160px; text-align: center;">
    <img src="http://hybridscloud.com/styles/hC/theme/images/Logo.png" width="80" height="80">
   <img src="http://hybridscloud.com/styles/hC/theme/images/Logo.png" width="80" height="80">
   <img src="http://hybridscloud.com/styles/hC/theme/images/Logo.png" width="80" height="80">
   <img src="http://hybridscloud.com/styles/hC/theme/images/Logo.png" width="80" height="80">
    </div>

Did you try that?
 
Try this:
Code:
<div id="message-box" style="float: left;">
                   <textarea style="height: 9em;" name="message" rows="7" cols="76" tabindex="3" class="inputbox"></textarea>
                </div>

    <div style="float: right; width: 160px; text-align: center;">
    <img src="http://hybridscloud.com/styles/hC/theme/images/Logo.png" width="70" height="70" style="float:left;"><img src="http://hybridscloud.com/styles/hC/theme/images/Logo.png" width="70" height="70" style="float:right;">
   <img src="http://hybridscloud.com/styles/hC/theme/images/Logo.png" width="70" height="70" style="float:left;"><img src="http://hybridscloud.com/styles/hC/theme/images/Logo.png" width="70" height="70" style="float:right;">
    </div>
 
You need to make the box's wider and make each image have a div.
Then put some CSS3 to round it.
 
I do lol.
I'll write some code for it and send to you to see if it works.
 
Back
Top Bottom