Hello, I am wanting to adjust the css to allow for a true hover drop-down menu for my theme. The theme support is not available and I am unable to find the contact info for the designer.
Theme: Music City by Chad Wright
Issue:
CSS:
nav {
ul {
display: flex;
flex-flow: row wrap;
list-style: none;
margin: 0;
padding: 0;
li {
a {
color: #fff;
display: block;
padding: .5em .75em;
}
&:first-child {
a {
padding: .5em .75em .5em 0;
}
}
}
}
}
}

