How do I remove the border for the child menu?
For example if I hover my mouse over "Sample Page" the option "Another Page" will drop down.
However, "Another Page" has a border.
Removed border for "Sample Page" with:
.sf-menu a, .sf-menu {
border: 0; /*Gets rid of menu border*/
outline: 0;
}
Got it from another thread.