Try this , Customizer –> Additional CSS :
.main-navigation .sub-menu a {
font-size: 13px;
padding: 12px 14px;
color: red;
}
hi Corrina!
thank you, but actually this changed the text color, i’ve forgot to mention i would like to change the bg color into black.
Yup, that would be important! Lol
Try this :
.main-navigation .sub-menu {
display: block;
box-shadow: 0 2px 5px rgba(0,0,0,.2);
position: absolute;
right: 0;
top: 100%;
left: 0;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
z-index: 999;
transition: all .3s;
background: black;
width: 230px;
padding: 0;
}