Widgets are relatively easy to register into the theme. Try this out for what you are wanting.
Open sidebar.php
Paste the following to the bottom of the page
<div id="split-left" class="aside main-aside sidebar">
<ul class="xoxo">
<!-- Widgetized sidebar, if you have the plugin installed. -->
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Split Sidebar Left') ) : ?>
<li></li>
<?php endif; ?>
</ul>
<?php arras_below_sidebar() ?>
</div><!-- #split sidebar left -->
<div id="split-right" class="aside main-aside sidebar">
<ul class="xoxo">
<!-- Widgetized sidebar, if you have the plugin installed. -->
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Split Sidebar Right') ) : ?>
<li></li>
<?php endif; ?>
</ul>
<?php arras_below_sidebar() ?>
</div><!-- #split sidebar right-->
Open launcher.php (library folder)
Find:
register_sidebar( array(
'name' => 'Secondary Sidebar #1',
'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
'after_widget' => '</li>',
'before_title' => '<h5 class="widgettitle">',
'after_title' => '</h5>'
) );
Add the following after it:
register_sidebar( array(
'name' => 'Split Sidebar Left',
'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
'after_widget' => '</li>',
'before_title' => '<h5 class="widgettitle">',
'after_title' => '</h5>'
) );
register_sidebar( array(
'name' => 'Split Sidebar Right',
'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
'after_widget' => '</li>',
'before_title' => '<h5 class="widgettitle">',
'after_title' => '</h5>'
) );
Open user.css and add this to the file:
#split-left{
max-width:145px;
margin-left:5px;
}
#split-right{
max-width:145px;
margin-right:5px;
}
Customize the css to fit your needs.
I needed to know how to do this at one point. Not knowing PHP made this fun to discover, but hey I got there eventually on my own.
Last edited by dgodfather (2010-10-13 16:56:16)