Thanks for the reply Gene.
The thing that's driving me hairless, is how and why thematic adds certain classes. Take a look please:
function childtheme_menu_above_header() { ?>
<div id="menu-above-header">
<ul>
<?php wp_page_menu( array( 'show_home' => 'home', 'sort_column' => 'menu_order' ) ); ?>
</ul>
</div>
<?php }
add_action('thematic_aboveheader','childtheme_menu_above_header');
What i don't get it it's why a <div class="menu"> is on my html?
<div id="menu-above-header">
<ul>
<div class="menu">
<ul class="sf-menu sf-js-enabled">
<li class="current_page_item"><a title="home" href="http://localhost:8888/teste">home</a></li>
<li class="page_item page-item-2"><a title="About" href="http://localhost:8888/teste/about/">About</a></li>
<li class="page_item page-item-3"><a title="Services" href="http://localhost:8888/teste/services/">Services</a></li>
<li class="page_item page-item-5"><a title="Products" href="http://localhost:8888/teste/products/">Products</a></li>
<li class="page_item page-item-6"><a title="Location" href="http://localhost:8888/teste/location/">Location</a></li>
<li class="page_item page-item-7"><a title="Contact" href="http://localhost:8888/teste/contact/">Contact</a></li>
</ul>
</div>
</ul>
</div>
I assume it has something to do with wp_page_menu in my functions.php file. But not sure about it since im a complete noob at php and wordpress.
Any thoughts about how to "bypass" this "issue"? Because i cant apply any css to a menu without chaging the other one to.
Maybe im being a dumbass here, but i really like to know how to do stuff and understand why im doing it.
Thanks for your patience.