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

    Hi Krisi team,
    Is there a way to change the dark Hover Effect? It would be nice if only the font gets a dark background like the Image Slider “full width”. Have you maybe a little code-snippet for me?
    Thank you once before and best regards, Daniela

    #656610

    Hey beyond-flora,

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

    #top .aviaccordion-preview-title-wrap {
        background: transparent;
    }
    #top .aviaccordion-preview-title * {
        background: rgba(0,0,0,0.3);
        padding: 5px; 
        border-radius: 3px;
    }
    

    Best regards,
    Yigit

    #656877

    Hey Yigit,

    thanks for your email. The code ist nearly perfect. The Background is very large, i mean “long”, and in the middle it seems like a double background….. I make a screenshot (see the link).

    Have you one more idea?

    Thank you and best regards,
    Daniela

    #657083

    Hi,

    Can you please try adding following code to Quick CSS as well?

    #top .aviaccordion-preview-title * { max-width: 50%; }

    Best regards,
    Yigit

    #657544

    Hi Yigit,

    thanks – that´s better. But there are only just two little things….
    1. The text is no longer at center but left. I tested with “text-align: center;”, but it did not work.
    2. And the text has a dual background: large and small. You can the screenshot.
    Do you still have a snippet of code for me?

    Thank you and best regards,
    Daniela

    #658286

    Hi,

    Please remove the following code:

    #top .aviaccordion-preview-title * { max-width: 50%; }
    

    Use this instead:

    #top .aviaccordion-preview-title .aviaccordion-title, #top .aviaccordion-preview-title .aviaccordion-excerpt {
        background: rgba(0,0,0,0.3);
        padding: 5px;
        border-radius: 3px;
        max-width: 40%;
        width: auto;
        text-align: center;
    }

    Best regards,
    Ismael

    #658324

    Hi Ismael,

    YES!!!! thank you, it works and it´s very nice!
    But I have only one litte question: is there a way to remove the title and discription on mobile devices (for exactly this setting)?

    Thank you and best regards,
    Daniela

    #658400

    Hi,

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 480px) {
    .aviaccordion-preview-title { display: none !important; }
    }

    Best regards,
    Yigit

    #659118

    Hi Yigit,
    that ist perfect! Thank you very much – I´m happy!!!!

    Best regards,
    Daniela

    #659901

    Hi,

    glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Best regards,
    Andy

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Accordion Slider – change hover effect’ is closed to new replies.