Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
Me again,
I would like the dropdown menu works the same way for the colors that the basic menu!
How is it possible to do this?
Philippe
Offline
it looks like the drop-down color is controlled by the Menu Items :hover color.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thank you for the answer !
I believe I misspoke.
I would like the dropdown be brown as the main menu.
And when I pass the mouse over an album of the combo, it passes the blue color.
Philippe
Offline
I think that will require custom css
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Yes I tried css for several hours, and unfortunately I found nothing!
Philippe
Offline
try this:
/*color for sub-menu items*/
ul.sub-menu li a{
color: red !important;
}
/*Hover color for sub-menu items*/
ul.sub-menu li a:hover {
color:blue !important;
}
enter color hex codes as needed to replace the color keywords.
The only way I could make it work was by using !important. There might be a better selector to use so !important wouldn't be necessary, but I didn't have time to explore that.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
It's great it works !!!!!
A very big thank you, and good afternoon.
Philippe
Offline
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Pages: 1