Howdy
I managed to create a custom page, where i add 2 widgets area in center - left and right.
And in this new page, I made some html tables where i insert all is needed:
Header, the center with left column and right column, and the footer.
But..i dont know hot to add the right zone.
Can you tell me how I insert the right-area code? Now i insert "widget-liquid-right" but is not the correct code..
This is my custom page:
<?php
/* Template Name: Custom Home Page */
get_header();
?>
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('WIDGET_TITLE')) : else : ?>
<div id="column_wrapper-hp">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="369" height="18" valign="top"> <?php bfa_widget_area('name=left'); ?></td>
<td width="369" valign="top"> <?php bfa_widget_area('name=right'); ?></td>
<td width="493" align="right" valign="top"> <?php bfa_widget_area('name=widget-liquid-right'); ?></td>
</tr>
</table>
</div>
</div>
</div>
<?php endif; ?>
<?php get_footer(); ?>