O.K. I really stink at this and I need a little help in changing the text colors for this menu ONLY.
Don't laugh, but heres my code:
"<tr><td> <div class="navMainSearch center"> <div id="navMainWrapper"> <a href="<?php echo zen_href_link(FILENAME_PRODUCTS_ALL); ?>"><?php echo HEADER_LINK_PRODUCTS_ALL; ?></a> | <a href="<?php echo zen_href_link(FILENAME_SPECIALS); ?>"><?php echo HEADER_LINK_SPECIALS; ?></a> | <a href="<?php echo zen_href_link(FILENAME_PRODUCTS_NEW); ?>"><?php echo HEADER_LINK_WHATS_NEW; ?></a> | <a href="<?php echo zen_href_link(FILENAME_FEATURED_PRODUCTS); ?>"><?php echo HEADER_LINK_FEATURED_PRODUCTS; ?></a> | <a href="<?php echo zen_href_link(FILENAME_CONTACT_US); ?>"><?php echo HEADER_LINK_CONTACT; ?></a></td></tr>
</div>"
This is a menu directly under the Header/Logo @ www.mopapartsales.com
With the dark gif background "I want to keep" the menu text is haerd to see and I have to change the color to all the links just to be able to see it.
So I need to us css to change just this menus text color.
I have attempted to use classes and div in the Main Stylesheet, but not with any success.
So do I use ...
.navMain
text-align: center;
color: #FFFFFF;
}
or
#navMain
text-align: center;
color: #FFFFFF;
}
I hope I'm making sense.



