Introduction
By default, there is no built-in option to change the hover color of the Profile Menu text. As an exception, you can use a custom CSS snippet to modify the hover color and better match your site’s design.
Custom Workaround
Follow the steps below to apply the change:
- Go to Theme Options
- Under Custom Codes, enable CSS
- Append the following code:
nav#object-nav ul li a:hover {
color: red;
}You may replace red with any valid CSS color value (hex, RGB, or color name).
- Save changes.
Troubleshooting and FAQs
Q: The hover color did not change after adding the CSS.
A: Clear your site cache, browser cache, and any CDN cache, then refresh the page.
Q: Can I apply a different hover color for mobile devices only?
A: Yes. You can wrap the CSS in a media query to target specific screen sizes.
Q: Will this affect other menus on the site?
A: No. This CSS specifically targets the Profile navigation menu.