Hi All,
I'm building out a main navigation, and I want it to have drop downs on it (so you hover over Menu Option 1 and a drop down will appear with subpages).
If I code out this drop down using visibility:none in the external css will it hurt my SEO? Or get me marked as Spam?
so for example- #menu ul{visibility:none;}, #menu ul:hover {visibility:visible;}
I know that you are not supposed to hide content from the search engines using Visibility, but I can't figure out any way to make a drop down with out hiding something (it seems like doing display:none or using JS would be doing the exact same thing).
Can anyone clarify?