how do i change the Accordion Toggle Plus Icon Hover Color from gray to white on just hover and active?
Hi navindesigns!
Please use this for the + icon:
.toggle_icon .vert_icon, .toggle_icon .hor_icon, span.toggle_icon {
border-color: #666666;
}
Use this for the active tab:
.main_color .toggler, .main_color .toggler.activeTitle:hover {
background: #2c5b9c !important;
color: white !important;
}
Let us know if we can do anything else.
Best regards,
Basilis
hi
I need the + icon HOVER color to be white
I have the same problem, i’d need to know how to change the + icon color ONLY on HOVER
Hey!
Pelase try
.toggle_icon .vert_icon, .toggle_icon .hor_icon, span.toggle_icon:hover {
border-color: #666666;
}
let me know if it works
Regards,
Basilis
That did not work, it made the regular/off state color white
Just to summarize for the +icon and square outline around it, i need the off state to be #666666 and the hover state to be #ffffff
Hi,
Try using this css code:
#top .av_toggle_section:hover span.toggle_icon .vert_icon,
#top .av_toggle_section:hover span.toggle_icon .hor_icon {
border-color: #fff;
}
Let us know if this helps :)
Best regards,
Nikko
thanks that works
i have one final issue
when i move my cursor away from the open toggler, the title bar section should remain blue background with white text, instead it goes back to being light gray with dark gray text
how do I keep the active open toggler title bar to remain blue background with white text when i move my cursor away from it?
Hi!
Please add this css code.
#top .av_toggle_section .activeTitle {
background: blue;
color: white !important;
}
#top .av_toggle_section .activeTitle span.toggle_icon .vert_icon,
#top .av_toggle_section .activeTitle span.toggle_icon .hor_icon {
border-color: #fff;
}
Adjust the color as needed.
Cheers!
Ismael
that works
thanks again
any update on this post?
Hi,
I replied.
Best regards,
Andy