MyBB Community Forums

Full Version: Make a empty box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi.
Can someone tell me how to make a empty box for banner exchange? Smile
Create a div where you want and set the size of it with css.

<div class="banner" style="width: 468px; height: 60px; ></div>

With banner:

<div class="banner" style="width: 468px; height: 60px; >
<a href="http://somesite.com/somepage.html" target="_blank" title="Sitename">
<img src="http://somehost.com/banner.png" />
</a>
</div>

You can further apply CSS styles or effects using the class "banner"

.banner {
...
...
}