Hi There,
Looks like if you look starting at line 325 of your css file, you can make some adjustments there to change, font color size etc.
/* Submenus */
nav#main-nav ul ul {
width: 180px;
display:none;
position:absolute;
top: 19px;
left: -10px;
z-index: 10;
margin: 0;
}
nav#main-nav ul ul li {
display:block;
position:relative;
background-color:#ffffff;
border-left: 1px solid #e1e1e1;
border-right: 1px solid #e1e1e1;
border-bottom: 1px dashed #e1e1e1;
margin:0;
}
nav#main-nav ul ul li:last-child {
border-bottom: 1px solid #e1e1e1;
}
nav#main-nav ul ul li a {
padding:11px 6px 12px 6px;
display:block;
font-size: 14px;
color:#a7a7a7;
text-transform: uppercase;
line-height:1.4em;
text-decoration: none;
}
Hope this helps locate the items you’re trying to change.
Will
It worked! Thanks so much!