Not sure if this has been addressed before, but I was recently looking at the developers guide and saw what seems to be a error/typo in the example stylesheet code for the HOVER. It has to do with the selected tab...
The snippet provided in the PDF is as follows #nav li a.SelectedTab {
font-size:1.12em;
background-color: #FFF;
} But the class "SelectedTab" is inserted on the [li] not the[a] so shouldnt it be...
#nav li.SelectedTab{
insert list item styles here
} #nav li.SelectedTab a{
insert anchor styles here
}
This allows for much more flexibility on the SelectedTab menu item.
Hope that little tidbit was moderately useful for some of you guys. |