Page is a not externally linkable
Marshall - 9:08 pm on Jan 24, 2012 (gmt 0)
If you navigation <div> has a specific id, you can target specific items within it:
#Nav li a {
color: #F00;
text-decoration: none;
}
For example. Begin whatever you want to target with the id of its parent. You can drill down as far as you need.
#Nav ul li ul li a {
blah blah
}
Marshall