MyBB Community Forums

Full Version: How to create div advertisements?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey I want to create div on this forum:

http://vs-dhl.ugu.pl/

above shoutbox.The same width as overall forum but height 200px.Any tips how to start?
admin panel >> templates >> active theme's templates >> header templates >> header

find <myshoutbox_yourkey> and add below code above it
<div style="text-align: center; height: 200px;">your advertisement code</div>
But it looks like this:

[Image: 1500522.jpeg]

And I want that this div looks like this(photo edit):

[Image: 1500526.jpeg]

Is it possible to import general look for this div from style?
use a html table with required height !
<table class="tborder" border="0">
<thead>
<tr>
<td class="thead">title</td>
</tr>
</thead>
<tr>
<td class="trow1" height="200px">your advertisement code</td>
</tr>
</table>