Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #736994

    FAQ

    how do i change the Accordion Toggle Plus Icon Hover Color from gray to white on just hover and active?

    #737020

    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

    #737070

    hi

    I need the + icon HOVER color to be white

    #737990

    I have the same problem, i’d need to know how to change the + icon color ONLY on HOVER

    #738018

    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

    #738021

    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

    FAQ

    #739746

    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

    #739751

    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?

    FAQ

    #741612

    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

    #741967

    that works

    thanks again

    #742100
    #744037

    Hi,

    I replied.

    Best regards,
    Andy

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Accordion Toggle Plus Icon Hover Color’ is closed to new replies.