+ Reply to Thread
Results 1 to 4 of 4

Thread: Split Side Bar

  1. #1

    Default Split Side Bar

    I love your Black and White Theme.

    The only thing I would love more about it would be if it had a split side bar - you know two columns to the right of the blog post area that initially were one wider column but then later split into two.

    It is my favourite blog layout.

  2. #2
    Join Date
    Feb 2009
    Posts
    605

    Default

    You mean a wide sidebar with two narrower ones below it, both on the right side? You can use the 3-Column Right and then add a custom area that covers the width of the two columns and put that area above them. It's just a matter of HTML and CSS. If you want details, let me know.


    Quote Originally Posted by Madeleine View Post
    I love your Black and White Theme.

    The only thing I would love more about it would be if it had a split side bar - you know two columns to the right of the blog post area that initially were one wider column but then later split into two.

    It is my favourite blog layout.

  3. #3

    Default

    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.
    [CENTER][URL="http://www.mandm.org.nz/"][B][COLOR="DarkRed"][FONT="Georgia"][SIZE="4"][B]M[/SIZE][SIZE="3"]AND[/SIZE][SIZE="4"]M[/B][/SIZE][/FONT][/COLOR][/B][/URL]
    [FONT="Verdana"][SIZE="2"][COLOR="DimGray"][B]Matt and Madeleine Flannagan[/B][/COLOR][/SIZE][/FONT]
    [FONT="Tahoma"][SIZE="2"]Philosophy of Religion [COLOR="Wheat"]|[/COLOR] Theology [COLOR="Wheat"]|[/COLOR] Ethics [COLOR="Wheat"]| [/COLOR]Jurisprudence [COLOR="Wheat"]|[/COLOR] Social Commentary[/SIZE][/FONT][/CENTER]

  4. #4
    Join Date
    Feb 2009
    Posts
    605

    Default

    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.



    Quote Originally Posted by Madeleine View Post
    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.

+ Reply to Thread

Similar Threads

  1. Add Padding to Right Side Widgets
    By EWKrause in forum Sidebar
    Replies: 1
    Last Post: 05-03-2010, 08:29 AM
  2. side bars on home page messed up
    By johnhenderson in forum Sidebar
    Replies: 2
    Last Post: 11-02-2009, 04:29 AM
  3. sidebar at each side and content centred?
    By xYassassinYx in forum Sidebar
    Replies: 1
    Last Post: 08-19-2009, 03:40 PM
  4. Comments count on Cutline 1.4 three column, split sidebars
    By koolvn in forum Posts, Pages, Comments
    Replies: 1
    Last Post: 03-30-2009, 09:14 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts