Hi Gary,
First I'd remove these three lines from your fe_page.tpl file. This will prevent any duplicate content, and also it will render the "custom sections position" select box useless:
	Code:
	<?php echo $this->getCustomSections('before'); ?>
<?php echo $this->getCustomSections('main'); ?>
<?php echo $this->getCustomSections('after'); ?>
 Once that's done you can insert the following code anywhere in the fe_page.tpl file as many times as you want for each of the custom layout sections you want to add:
	Code:
	<?php if ($this->sections['My Layout Section']): ?>
	<div id="my-layout-section">
		<?php echo $this->sections['My Layout Section']; ?>
	</div>
<?php endif; ?>
 
						
					
Bookmarks