How can I change the font color in the top menu from white to black. I use LT-Abroad Joomla.
Thank you very much.
1 Answers
Default menu color is white, you can change to another color by go to Template Settings, open tab “Custom Code” and add more CSS as below for Custom CSS code field
.sp-megamenu-parent >li >a, .sp-megamenu-parent >li >span {
color: #xxx!important;
}
with “#xxx” is color code you want.