Recent Topics

1 Feb 21, 2006 15:57    

Hi!

I´m using the kubrick evo theme and it works perfekt - but it would be more usefull for me, to have the sidebar on all sites incl. the "read more" sites. Anybody an idea how to handle this? What is to change to have the sidebar on all sites in my blog?

2 Feb 21, 2006 21:52

Try this. Open up /skins/Kubrick2evo/_main.php and find this part.

<?php if( $disp != 'single' ) {
        echo '<div id="wrapper">';
        } else {
        echo '<div id="wrapperWide">';
        } ?>


change it to

<div id="wrapper">


(Remove the if statement and the php code around it, leaving only the opening div tag.)
Then find this:

<?php if( $disp != 'single' ) {
        echo '<div id="bPosts">';
        } else {
        echo '<div id="bPostsWide">';
        } ?>


and change it to this:

<div id="bPosts">


Find this:

<?php if( $disp != 'single' ) { ?>
<div id="bSideBar">


and change it to this:

<div id="bSideBar">


Finally, find this:

<?php   } ?>

<div id="pageFooter">


and change it to this:

<div id="pageFooter">

3 Feb 21, 2006 22:12

perfect.

thx a lot!


Form is loading...