sidebar help!
-
I am using a child theme of the thematic theme, which uses a primary-aside and a secondary-aside areas on the right sidebar. When I add something to the secondary-aside sidebar, it overlaps the primary-aside sidebar like this: https://kmfabric.com/.
This is the code of my sidebar file, and I’m hoping someone can help me out with this:
<?php thematic_abovemainasides(); ?>
<?php if (is_sidebar_active(‘primary-aside’)) { ?>
<div id=”primary” class=”aside main-aside”>
<ul class=”xoxo”>
<?php dynamic_sidebar(‘primary-aside’); ?></div><!– #primary .aside –>
<?php } ?>
<?php thematic_betweenmainasides(); ?>
<?php if (is_sidebar_active(‘secondary-aside’)) { ?>
<div id=”secondary” class=”aside main-aside”>
<ul class=”xoxo”>
<?php dynamic_sidebar(‘secondary-aside’) ?></div><!– #secondary .aside –>
<?php } ?>
- The topic ‘sidebar help!’ is closed to new replies.