Hello,
I am trying to integrate PunBB into my Wordpress blog and just have one minor glitch. My two Sidebars are loading below the Forums, but need to be on the right side. Please help.
Blog: http://knigh7s.net/blog
Forum: http://knigh7s.net/blog/wp-forums
I used your Main.tpl as a reference and this is what I had come up with.
Code:
<!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>
<!-- Wordpress Template CSS -->
<link rel="stylesheet" type="text/css" href="http://www.knigh7s.net/blog/wp-content/themes/t..." media="screen" />
<!-- Wordpress Template CSS -->
</head>
<body>
<!-- Wordpress Template Header -->
<?php wp_admin_bar(); ?>
<!-- ENTIRE PAGE, CENTERED -->
<div id="blog">
<!-- MAIN WRAPPER, CONTAINING TWO COLUMNS -->
<div id="wrapper">
<!-- LEFT COLUMN ON OUTER WRAPPER -->
<div id="wrapperleft">
<!-- MAIN CONTENT -->
<div id="main">
<!-- HEADER -->
<div id="header">
<h1></h1>
</div>
<div id="flickrd">
<script type="text/javascript" src="http://www.flickr.com/badge_code.gne?nsid=94676.../script>
</div>
<center><div class="quote"><?php witty('"', '"'); ?></div></center>
<!-- Wordpress Template Header -->
<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>
<pun_announcement>
<pun_main>
<pun_footer>
<!-- Wordpress Template Footer -->
</div>
<!-- MIDDLE COLUMN -->
<div id="middle">
<h1>linkblog</h1>
<h2>quickies</h2>
<ul>
<?php c2c_get_recent_posts(20, '<li>%post_content_sanitized% (<a href="%post_url%">%comments_count%</a>)</li>', '13'); ?>
</ul>
<? /* REPLACE "JARK" IN THE FOLLOWING WITH YOUR del.icio.us USERNAME FOR YOUR LINKBLOG TO APPEAR */ ?>
<h2>del.icio.us linkage</h2>
<script type="text/javascript" src="http://del.icio.us/feeds/js/Knigh7s?count=30&qu.../script>
<!-- deviantART Pastie Beginning Marker -->
<h2>visual distractions</h2>
<script type="text/javascript" src="http://backend.deviantart.com/pasties/js/?iam=f.../script>
<!-- deviantART Pastie Ending Marker -->
</div>
</div>
<!-- RIGHT COLUMN ON OUTER WRAPPER -->
<div id="right">
<h1>respection</h1>
<h2>quick navigation</h2>
<ul>
<li><a href="http://knigh7s.net/blog/">Home</a></li>
<li><a href="/blog/archives/">Archives</a></li>
<li><a href="/blog/plugins/">Plugins</a></li>
<li><a href="http://www.knigh7s.net/blog/wp-content/plugins/...">Photos</a></li>
<li><a href="/blog/wp-forums/">Forums</a></li>
<li><a href="/blog/links/">Links</a></li>
<li><a href="/blog/profile/">Profile</a></li>
<li><a href="/blog/contact/">Contact</a></li>
</ul>
<h2>recent posts</h2>
<ul>
<? /*To show specific poll, use <?php get_poll(<ID>);?> where <ID> is your poll id. */ ?>
<?php mdv_recent_posts(15, '<li>', '</li>', true, 5, false) ?>
</ul>
<h2>categories</h2>
<ul>
<?php list_cats(1, '', 'name', 'asc', '', 1, 0, 1, 0, 1, 1, 0,'','','','','') ?>
</ul>
<h2>poll</h2>
<ul>
<?php get_poll();?>
<p><a href="wp-polls.php">Polls Archive</a></p>
</ul>
<h2>emergency exits</h2>
<ul>
<?php get_links(-1, '<li>', '</li>', '', FALSE, 'name', FALSE, FALSE, -1, FALSE); ?>
</ul>
<h2>adverts</h2>
<ul>
<center><a href="http://www.continuousink.com/default.asp?PARTNE... target="_new"><img src="http://knigh7s.net/blog/wp-images/advert/Cont-i..." border="0" alt="Continuous Inks Systems" align="middle"></a></center>
</ul>
<h2>metadata</h2>
<ul>
<li><a href="<?php echo bloginfo('rss2_url'); ?>" title="RSS Feed">RSS</a>.
<li><a href="http://validator.w3.org/check?uri=referer" title="Valid XHTML">XHTML</a>.</li>
<li><a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS">CSS</a>.</li>
</ul>
</div>
</div>
<!-- FOOTER -->
<div id="footer">
<center>
Proudly powered by <a href="http://wordpress.org/">WordPress <?php bloginfo('version'); ?></a>. <a href="http://www.jarkolicious.com/wordpress/themes/tr...">triSexuality Standard</a> theme <a href="http://www.jarkolicious.com/">designed by Scott Jarkoff</a> & modified by <a href="http://www.knigh7s.net">Knigh7s.net</a>.
<?php do_action('wp_footer'); ?>
</center>
</div>
</div>
<!-- Wordpress Template Footer -->
</div>
</div>
</body>
</html>
Thank you
Knigh7s