Sidebar Issues Please Help
-
I am currently using this code (code shown below) to setup a dynamic navigation on the left side of a site so that when you click on a page when that page loads it shows all of the children (subpages) under that link.
It works great, however I am trying to get the child pages (subpages) to show up in a smaller font with a different color background behind them. Basically trying to style them differently than the main links. I have tried numerous things over the past few months. Anyone have any ideas on making this work? I have checked web sites & tutorials, but nothing seems to be exactly what I am looking to do.
<?php if ( function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Sidebar’) ) : else : ?>
<div id=”sidebartext”>
<?php wp_list_pages(‘depth=0’);(‘sort_column=menu_order&child&title_li=’); ?>
</div>
<?php endif; ?>
- The topic ‘Sidebar Issues Please Help’ is closed to new replies.