Could someone please share the CSS code snippet required to change the mobile menu text color?
Appreciated.
Emmanuel
Could someone please share the CSS code snippet required to change the mobile menu text color?
Appreciated.
Emmanuel
@media (max-width: 768px) {
.Header-primary a,
.Header-secondary a {
color: #ff6347 !important; /* link colors */
}
.Header-primary a:hover,
.Header-secondary a:hover {
color: #ff4500 !important; /* choose hover color */
}
.Header-primary span,
.Header-secondary span {
color: #ff6347 !important; /* span color */
}
.Header-primary span:hover,
.Header-secondary span:hover {
color: #ff4500 !important; /* span hover color */
}
}
@huseyinfiliz
Thank you, worked 100%
Emmanuel