Custom menu?

Permalink
I have done so much reading and can't seem to find out how to do this.

How in the heck can I over ride the 'auto nav'?
I want to use my own css code.

Thanks

 
Kurtopsy replied on at Permalink Reply
Kurtopsy
Are talking about over-riding the auto nav block or styling it? If you're wanting to style it with CSS, then just target the 'ul', 'ol', 'li' and 'a' tags.

Example:
.nav ul li a {
     display:block;
     font: bold 12px/12px Arial, Helvetica, sans-serif;
     color: #330000;
     padding-left:6px;
}