HI,
on my page below the mobile menu symbol appears orange – and disappears on hover. It shall appear in green #14C81a and turn into orange #E65A37 on hover.
I was not able to figure out w/ the styling options where I have to change what – can you help?
Thx in advance and best regards, Tilman
Hi Tilman!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#advanced_menu_toggle, #advanced_menu_hide {
color: #14C81a;
}
#advanced_menu_toggle:hover, #advanced_menu_hide:hover {
color: #E65A37;
}
Best regards,
Yigit
Hi Yigit,
thx – green is now ok , but on hover (mac screen) it´s still white (i.e. it looks like it disappears…)
best regards Tilman
…may be the css afterwards overwrites it? pls see below
Hi!
Please try adding !important rule to the second code for hover
#advanced_menu_toggle:hover, #advanced_menu_hide:hover {
color: #E65A37 !important;
}
Best regards,
Yigit
soll, this works :-)
thx a lot, Yigit