Submenu Text Color
-
On my website I have a menu that is gray with navy blue menu items. My sub-menu is inverted (blue with gray items). On my mobile device, the whole menu is gray, but the text color of the sub-menu items are gray as well, so they are not visible unless they are selected. What CSS code should I use to change this?
The blog I need help with is: (visible only to logged in users)
-
This is being caused by existing CSS you’ve added:
.hackathon-menu .sub-menu a { color: #BCBFC6 !important; border-bottom: 1px solid; border-bottom-color: white; }And as you use
!imporatantthere, there is no way to override this. So you’ll either need to remove that existing CSS, or modify it to use a more specific selector so you don’t need to force it with!important.What is that CSS supposed to do?
Also note that your plan gives you access to both live chat and direct email support. You can reach those at any time by clicking the Help icon that appears bottom-right on all the My Sites pages, or else via the direct link at https://wordpress.com/help/contact
- The topic ‘Submenu Text Color’ is closed to new replies.