You may have have taken what I said about display:none; too much to heart or, you just forgot to keep this style declaration:
Code:
.tabcontent{
display:none;
}
Whatever you style for the tabcontent links:
Code:
.tabcontent a{
links styles go here
}
The tabcontent must be still set to display:none; otherwise, you will see one or all of the link sets until the menu is moused over once and the script takes over the styling dynamically, which is what is happeniing now. So, just add that block (first style block in this message) back in, and it will be fine.
It is a matter of differentiating between styles applied to each individual link, and style for each link set.
Bookmarks