PDA

View Full Version : Moving TABs Sidebar Lower


ballersonly
02-09-2009, 02:34 AM
Could anyone tell me how to move the Recent/Categories/Archives tabs below the widgets? I tried moving some code in the sidebar.php code and I ended up losing all my changes to color, etc.

Kevin
02-09-2009, 08:01 AM
in the sidebar template you should see this code :

<li class="widget">
<?php include("tabs.php"); ?>
</li>



<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>

<?php endif; ?>
</ul>All you need to do is move the tabs section to underneath the dynamic sidebar like this :

<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>

<?php endif; ?>

<li class="widget">
<?php include("tabs.php"); ?>
</li>

</ul>

ballersonly
02-17-2009, 07:25 AM
Thanks for the quick response! Worked like a charm.