Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1000571

    Hello, im looking to affect the various aspects of the accordion element, is there a page that shows all the styles for it?
    normal, hover & active

    color of the symbols (plus & minus)
    Borders
    Title
    Text
    Links

    #1000781

    Hey OhYa1337,

    Could you please attach a mockup of what you’re trying to achieve?

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1001018

    1) I am looking to affect the outline border in all 3 states (normal, hover, active)
    for both the clicked and none clicked state, so all 3 states in both contexts

    2) plus also the plus & minus icon & box around each in all 3 states of both active and inactive

    3) I would also like to know the class for the text inside each content of the expanded accordian

    http://prntscr.com/km8r6f

    I have already found some of it,

    /* Accordian */
    #top #wrap_all .main_color .toggler.activeTitle {
    background-color: white;
    color: red;
    }
    toggler, .main_color .toggler.activeTitle:hover {
    background-color: red!important;
    color: white!important;
    }
    toggler, .main_color .toggler.Title:hover {
    background-color: red;
    color: blue;
    }
    #1001162

    Hi OhYa1337,

    Can you share the link to the page with us?

    Here are the docs for you

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1001440

    Yes, I was trying to figure it out myself, but I just cant find the style names for what I am trying to affect changes to.
    I would like to make these changes,

    *Default Not Selected State*
    text blue
    background grey
    icon navy
    icon border navy

    icon red on hover
    icon border red on hover
    accordion border red on hover
    text red on hover

    *Active Accordion State*
    text red (Already Done)
    background white (Already Done)
    icon red
    icon border red

    main body text inside selected accorion
    text red
    background grey
    link red
    visited link red
    hover link underline

    icon red on hover
    icon border red on hover
    accordion border red on hover
    text White on hover (Already Done)
    background Red on Hover (Already Done)

    #1001991

    Hi,
    You can use this css code as a starting point:

    
    #top .togglecontainer .single_toggle:first-child .toggler, #top .togglecontainer .taglist + .single_toggle .toggler {
        color: blue;
        background-color: lightgray;
    }
    
    #top .av_toggle_section .av-inherit-border-color span.toggle_icon .vert_icon, #top .av_toggle_section .av-inherit-border-color span.toggle_icon .hor_icon{
        border-color: navy;
    }
    

    To change the hover colors you can add the :hover selector like

    
    #top .av_toggle_section:hover .av-inherit-border-color span.toggle_icon .vert_icon, #top .av_toggle_section .av-inherit-border-color span.toggle_icon .hor_icon{
        border-color: red;
    }
    

    Best regards,
    Dude

    #1007387

    are there choices for icons other than the + & – ?

    #1007504

    Hi,

    Thank you for writing to us.
    Please check the link Victory mentioned earlier.
    We updated it with all the customization options you are looking for :)

    Best regards,
    Vinay

    #1007515

    Ahhh, yes I see that in there now!
    Thank you

    #1007538

    Hi,

    Great, thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.