cybertongue wrote:Thank you for taking the time to reply, and yes, you did help.

Let's get you started, shall we? So here's the example I promised. By the way, did I mention there's always the possibility to use the HTML Nugget sidebar plugin to integrate HTML into the sidebars?
Okay, let's assume you're working with the reigning default template 'carl_contest', and you want to add a banner between the serendipity banner on top of the page and the actual content. This has to be changed in the file index.tpl, so let's take a look at that code:
Code: Select all
<div id="wrap">
<div id="serendipity_banner"><a id="topofpage"></a>
<h1><a class="homelink1" href="{$serendipityBaseURL}">{$head_title|@default:$blogTitle|truncate:80:" ..."}</a></h1>
<h2><a class="homelink2" href="{$serendipityBaseURL}">{$head_subtitle|@default:$blogDescription}</a></h2>
</div>
<table id="mainpane">
So we have a wrapper div holding everything else together, a div for the s9y banner and a table - urks - holding content and sidebar columns. Now we want to add banner space inbetween, so we edit the index.tpl like this:
Code: Select all
<div id="wrap">
<div id="serendipity_banner"><a id="topofpage"></a>
<h1><a class="homelink1" href="{$serendipityBaseURL}">{$head_title|@default:$blogTitle|truncate:80:" ..."}</a></h1>
<h2><a class="homelink2" href="{$serendipityBaseURL}">{$head_subtitle|@default:$blogDescription}</a></h2>
</div>
<div id="bannerspace">
<!-- enter your content here -->
</div>
<table id="mainpane">
Throw in some CSS (which I assume you're firm with) and you're done
YL