Had the menu text set to the same color as the background hover color, but text would turn white.
When drilling down to submenu the first level menu item would retain the background hover color but revert back to the regular text color not the hover text color (white) so since these were the same color the text was disappearing.
Could not fix using the Flare GUI or style sheets.
The fix is made in the output:
Set Menu Text Hover Color:
1. In output, open Skins > Fluid > Stylesheets > Styles
2. Insert the following:
ul.navigation ul > li:hover > a
{
color: #ffffff
}
Top Nav Menu Hover Text Color
Re: Top Nav Menu Hover Text Color
Had the same problem.
There should be a way to control this from the Skin settings. We shouldn't have to change the output files.
Did you make a bug report?
There should be a way to control this from the Skin settings. We shouldn't have to change the output files.
Did you make a bug report?
Moshe Davis
Jerusalem, Israel
Jerusalem, Israel
Re: Top Nav Menu Hover Text Color
Why are you editing the output CSS file?
Just add that CSS in your own stylesheet, and include !important if you need to.
Just add that CSS in your own stylesheet, and include !important if you need to.
Code: Select all
ul.navigation ul > li:hover > a
{
color: #ffffff !important;
}