Topic: Miniportal problem...layout.
Okey first of all i´m runnin the site http://cssforumet.frac.dk and I think the punBB forum is great. Now for my problem.
I´m trying to convert http://cssforumet.frac.dk to miniportal. I´ve done the miniportal guide located at punres.org with sucess but i would like to change the layout abit. My testsite before implementation is located here http://testforumet.frac.dk
I´ve done som spying at http://www.pluriservices.net/ and this is how I would like my site layuout to look aswell. I´ve tried to edit the main.tpl without any sucess and I´m really lost here...so how do I put the "Welcome bla bla bla" in between the "whos online blocks located at the right and the left? My main.tpl looks like this: (sorry for my english hehe)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="<pun_content_direction>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<pun_char_encoding>" />
<pun_head>
<style type="text/css">
#left {
width: 125px;
float: left;
}
#right {
width: 125px;
float: right;
}
#main {
margin-left: 150px;
margin-right: 150px;
}
#container {
width: 100%;
float: middle;
margin-left: 140px;
}
</style>
</head>
<body>
<div id="punwrap">
<div id="pun<pun_page>" class="pun">
<div id="brdheader" class="block">
<div class="box">
<div id="brdtitle" class="inbox">
<pun_title>
<pun_desc>
</div>
<pun_navlinks>
<pun_status>
</div>
</div>
<div id="container">
<div id="main">
Här kan man lgga reklam
<pun_announcement>
<pun_main>
</div>
</div>
<div id="left">
<div class="block">
<h2 class="block2"><span>Whos Online?</span></h2>
<div class="box">
<pun_online>
</div>
</div>
<div class="block">
<h2><span>Menu</span></h2>
<div class="box">
<pun_sidelinks>
</div>
</div>
<div class="block">
<h2 class="block2"><span>More Links</span></h2>
<div class="box">
<div class="inbox">
<ul>
<li><a href="index.php">Link 1</a></li>
<li><a href="index.php">Link 2</a></li>
<li><a href="index.php">Link 3</a></li>
<li><a href="index.php">Link 4</a></li>
</ul>
</div>
</div>
</div>
</div>
<div id="right">
<div class="block">
<h2 class="block2"><span>Whos Online?</span></h2>
<div class="box">
<pun_online>
</div>
</div>
<div class="block">
<h2><span>Menu</span></h2>
<div class="box">
<pun_sidelinks>
</div>
</div>
<div class="block">
<h2 class="block2"><span>More Links</span></h2>
<div class="box">
<div class="inbox">
<ul>
<li><a href="index.php">Link 1</a></li>
<li><a href="index.php">Link 2</a></li>
<li><a href="index.php">Link 3</a></li>
<li><a href="index.php">Link 4</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
<pun_footer>
</div>
</div>
</body>
</html>