Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #630620

    Hi, i need my accordion slider to,

    first transparent dark black, when cursor over, it become flat clean.
    What is the css behind?

    What i able to made only, both become flat clean.

    Please advise.

    Thanks

    #631065

    anyone can help ?

    #631374

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    
    #top .aviaccordion-title-on-hover .aviaccordion-preview {
        opacity: 1;
        filter: alpha(opacity=1);
        background: rgba(0,0,0,0.5);
    }
    #top .aviaccordion-title-on-hover:hover .aviaccordion-preview {
        background: transparent!important;
    }
    

    Best regards,
    Yigit

    #631749

    Hi Yigit,

    It is not working, is there any other solution?

    Thanks

    #632040

    Hi,

    Please try adding !import rule as following

    #top .aviaccordion-title-on-hover .aviaccordion-preview {
        opacity: 1 !important;
        filter: alpha(opacity=1) !important;
        background: rgba(0,0,0,0.5) !important;
    }
    #top .aviaccordion-title-on-hover:hover .aviaccordion-preview {
        background: transparent!important;
    }

    Best regards,
    Yigit

    #632191

    Hi Yigit, thank for your attempt. Still not working. If i replaced,
    #top .aviaccordion-title-on-hover:hover .aviaccordion-preview {
    background: transparent!important;
    }

    to

    #top .aviaccordion-title-on-hover:hover .aviaccordion-preview {
    opacity: 0!important;
    }

    It works. But it removed my caption too.

    What is your advice?

    #632874

    Hi Yigit,

    Any advice?

    Thanks

    #633415

    Hi,

    Sorry for the delay. Please refrain from bumping or replying to your own thread because it gets pushed back to the end of the queue and moderators won’t be able to provide a response immediately. Please be patient while we go through the rest of the queue. Thank you for your understanding.

    Add this in the Quick CSS field to remove the transparent overlay on hover:

    .aviaccordion-slide:hover .aviaccordion-preview-title-wrap {
        background: transparent !important;
    }

    Best regards,
    Ismael

    #633590

    Dear Ismael,

    It works. Great help thanks!

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘accordion slider’ is closed to new replies.