Top Nav Menu Hover Text Color

This forum is for all Flare issues not related to any of the other categories.
Post Reply
jeivers
Jr. Propeller Head
Posts: 5
Joined: Wed Dec 02, 2015 2:04 pm

Top Nav Menu Hover Text Color

Post by jeivers »

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
}
moshe
Propeller Head
Posts: 45
Joined: Tue Apr 05, 2016 10:10 pm
Location: Jerusalem, Israel

Re: Top Nav Menu Hover Text Color

Post by moshe »

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?
Moshe Davis
Jerusalem, Israel
NorthEast
Master Propellus Maximus
Posts: 6398
Joined: Mon Mar 05, 2007 8:33 am

Re: Top Nav Menu Hover Text Color

Post by NorthEast »

Why are you editing the output CSS file?

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;
}
Post Reply