Someone could help explain how to change the color of the link sub menu.
Thank you.
Hello,
This is the CSS to handle the sub-menu items color:
#header .top-header .header-navigation ul li.menu-item-has-children .sub-menu li a{
color: blue;
}
#header .top-header .header-navigation ul li.menu-item-has-children .sub-menu li a:hover{
color: red;
}
This code should be placed in a child’s theme stylesheet.css, ideally.
But you can use a custom CSS plugin or place it inside Dashboard > Appearances > Editor > Style.css but keep in mind that this will get erased when you update (replace) the theme files.
Regards
Thank you very much for your attention.
Another question, the rest of the link of the page? for example “Read More”?
Hello,
This would be the CSS for the read more but there are countless more items that needs to be have their color changed so I cannot fully assist you with this kind of custom modifications.
#latest-news .section-content .post .post-button{
color: red;
}
Regards