|
You are saying that you want everything listed above to apply only to the drop-down menu and not the rest of the page?
If so, you could give everything a class.
ex in stylesheet:
a.dropdown {
text-decoration: none;
}
ex in page:
<a class="dropdown" href="#Movie_Package">
Is this what you mean?
|