It can also be done for the Black and White theme.
1. Add these lines after </ul> in sidebar.php:
PHP Code:
<ul class="sidebar_left">
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar(2)) : ?>
<li class="widget"><h2>Widget Title</h2>
</li>
<?php endif; ?>
</ul>
<ul class="sidebar_right">
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar(3)) : ?>
<li class="widget"><h2>Widget Title</h2>
</li>
<?php endif; ?>
</ul>
<div class="clear"></div>
2. In the first <ul>...</ul> change
PHP Code:
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?>
to
PHP Code:
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar(1)) : ?>
3. In functions.php, change
PHP Code:
if ( function_exists('register_sidebar') )
register_sidebar();
to
PHP Code:
if (function_exists('register_sidebars')) register_sidebars(3, array('before_widget' => '','after_widget' => ''));
4. In style.css, add these lines
Code:
ul.sidebar_left { width: 123px; float: left; }
ul.sidebar_right { width: 123px; float: right; }
right before ul.sidebar_list {...}
It might need some more CSS tweaking to get the font styles right.

Originally Posted by
Madeleine
Really? But I'd have to stop using Black and White right? I love the small caps in the headings and the other features in its layout better than the other versions of cutline - also the white background looks off-white which is cool.
Bookmarks