Help!
I was messing around with my left sidebar template and I must have messed something up! I have it set on right sidebar right now because if it is set on left all that shows on the page is the header and the nav bar at the top. The rest is all white.
Can you help figure out what is missing? Here is the code. I am trying to put in my nav buttons from my main website so that people have access to the main part of the website too. (you can see the buttons on
www.smallscraps.com on the left side)
{ <?php
echo <<<PPPRINT
<table width="{$Globals['tablewidth']}" cellpadding="0" cellspacing="0" border="0"
align="center">
<tr>
<td align="center" valign="top">
<tr>
PPPRINT;
if ( $Globals['statspal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/statspal.tmpl" );
}
if ( $Globals['calpal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/calpal.tmpl" );
}
if ( $Globals['topposterspal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/topposterpal.tmpl" );
}
if ( $Globals['custom1pal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/custom1pal.tmpl" );
}
if ( $Globals['randompal'] == "yes" ) {
echo "<div id=\"randompal\">";
display_gallery("random", "", "", 1, 2, 1);
echo "</div>";
}
if ( $Globals['ratingspal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/topratedpal.tmpl" );
}
if ( $Globals['custom2pal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/custom2pal.tmpl" );
}
if ( $Globals['custom3pal'] == "yes" ) {
include( "{$Globals['PP_PATH']}/{$Globals['TMPL_PATH']}/custom3pal.tmpl" );
}
</table>
</td>
</tr>
</table>
echo<<<PPPRINT
<p><center><a href="http://www.ezlaserdesigns.com" target="_blank"><img border="0"
src="http://www.smallscraps.com/bannervert_ezlaser.jpg" align="center" width="162"
height="317"></a>
<p align="center" style="margin-top: 8; margin-bottom: -2"><font size="-1"><a
href="http://www.scrapbookingtop50.com/cgi-bin/topsite.cgi?user=smallscraps"><img
src="http://www.scrapbookingtop50.com/cgi-bin/counter.cgi?user=smallscraps"
alt="Scrapbookingtop50 Counter" border="0"></a>
<p>
<td align="center" valign="top">
PPPRINT;
?> }