• Where do i find a theme which makes it possible to have a big square in the sidebar? I got a them with a double sidebar now but still it doesn allow for a a big square. You cant have a square that stretches over both bars.

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • You want them as an “endcap” like this site? https://amygrindhouse.com/

    As in keeping 2 sidebars but have one box that goes across the top of both?

    Thread Starter ruanz3

    (@ruanz3)

    Exactly

    Thread Starter ruanz3

    (@ruanz3)

    Am i gona get some help here or what?

    It will have a lot to do with how your template is set up, but here it is in general. One way to do it is…

    edit your sidebar.php to not function as a traditional sidebar.

    Instead, set it up as a sidebar with two more sidebars inside it, like this.

    <div class="styleforbox"><?php include(TEMPLATEPATH . '/yourbox.php'); ?></div>
    
    <div class="styleforeleft">
    <?php include(TEMPLATEPATH . '/sidebar-left.php'); ?>
    </div>
    
    <div class="styleforeright">
    <?php include(TEMPLATEPATH . '/sidebar-right.php'); ?>
    </div>

    Basically, you are:

    1) Making a sidebar.php
    2) Inside that sidebar you are stacking a box on top. Do that either hardcoded in or sourced (via php include).
    3) Then source in two sidebars AFTER the box.
    4) Make your CSS <div> control the style, look, and a alignment of each box/column.

    Thread Starter ruanz3

    (@ruanz3)

    Thats too complicated for me, where can i find a template that would have that option already?

    Thread Starter ruanz3

    (@ruanz3)

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Double Sidebar’ is closed to new replies.