I am using a theme that uses the function wp_list_pages to retrieve the list of pages and then displays them in the menu navigator. Is there a way I could add an id to the tags created by the list so that I could format the text from css?
Here is the part that generates the menu navigator:
<div id="hmenu">
<ul>
<li><a id="ktmenu" href="<?php echo get_settings('home'); ?>"><?php _e('Home') ?></a></li>
<?php wp_list_pages('title_li=&depth=1') ?>
<li id="hmenu_rss"> <a id="ktmenu" href="<?php bloginfo('rss2_url'); ?>" title="<?php bloginfo('name'); ?> RSS Feed">Subscribe to Feed</a></li>
</ul>
</div>