Tagged: , ,

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

    Hi there,

    I would like to remove the Textanimations from the Slider (Full width)-Element. Suggestions i found in the forum didn’t work.
    I also would like to remove the Caption Text from the mobile Version, so that there only Headline and buttons would be visible.

    thanks for your support..

    best regards,

    marcus

    #663605

    Hi Marcus,

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Thanks,
    Rikard

    #663609

    no Problem:

    #664355

    Hi,

    Please try the following in Quick CSS under Enfold–>General Styling:

    .avia-caption-title, avia-caption-content {
    animation:none !important;
    }
    
    @media only screen and (max-width: 767px) {
    .avia-caption-content{
    display:none !important;
    }
    }

    Thanks,
    Rikard

    • This reply was modified 8 years, 4 months ago by Rikard.
    #664409

    Hi Rikard,

    unfortunately this did not change one thing. Still animating, still animation and caption on mobile.

    regards,

    Marcus

    #664986

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Yigit

    #665193

    Hi Yigit,

    Here are the login credentials.

    Thanks,

    Marcus

    #665489

    Hi,

    You had a missing closing curly bracket in your style.css file, i added it and then added following code to bottom of Quick CSS

    
    .avia_transform .av_slideshow_full .active-slide .avia-slideshow-button, .avia_transform .av_fullscreen .active-slide .avia-slideshow-button,.avia_transform .av_slideshow_full .active-slide .avia-caption-content, .avia_transform .av_fullscreen .active-slide .avia-caption-content {
        visibility: visible;
        -webkit-animation: none!important;
        animation: none!important;
    }

    please review your website now

    Best regards,
    Yigit

    #665659

    Thanks Yigit !

    Stupid me :) – This did the trick

    Added this to shut of the caption-text on Smartphones:

    @media only screen and (max-width: 767px) {
    .avia-caption-content {
    display:none !important;
    }
    }
    

    Case solved –

    Best Regards,

    Marcus

    #665664

    Hi,

    You are welcome, glad we could help :)
    Let us know if you have any other questions or issues

    Best regards,
    Yigit

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Remove Textanimations from Slider (Full-Width)-Element’ is closed to new replies.