Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #305010

    Hey,
    The easy (small) slider seems to work with images only. Is there a way to choose just a background color for this slider (with possibility to add an ID for the color, like it’s possible to do in the “color sections”), and only have different texts/sentences “sliding” ? Also eventually the possibility to choose different background colors for each text-slide ? cf as an example first slide of -> http://dimsemenov.com/plugins/royal-slider/animated-blocks/
    If not possible, do you plan by any chance to add this type of slider soon in the future ?
    Thank you very much.
    Best regards,
    Marie

    #305187

    Hi marienoisette!

    Thank you for using Enfold.

    Right now, it’s not possible to apply a background color on the slides but you can upload solid background images then apply the text on the caption. You can also vote or post the feature on our Feature Requests page.

    Cheers!
    Ismael

    #305229

    OK Ismael, thank you !
    I will post the feature on the “feature requests page”.
    Meanwhile the solution with solid background images can indeed be a good alternative. Except that I will have to change position of captions titles and/or contents in quick CSS (let’s say center them for example). The limit of this solution is that if I also want to use the easy slider in the “normal way” (with photos and captions at the bottom) on another page, the changings I will have made previously for captions position will affect all easy sliders on the site no ? That means I should simply avoid using captions for this one (the “photos” one) I guess… ?

    Anyway, thank you again for your advices. It’s a good beginning of solution ;)

    Cheers,
    Marie

    #305777

    Hi!

    You can use the page id class (wordpress adds it to the body element) to target specific pages with your css code. I.e. this code:

    
    .page-id-542 .slide-content{
    background-color: #333;
    }
    

    would just affect the slideshow/slides on the page with the id 542.

    Regards,
    Peter

    #305847
    This reply has been marked as private.
    #306413

    Hi!

    1) No, WordPress generates an unique page id for each post/page, etc. when you create it. This article will show you how to find out the id of a page/post: http://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/

    2) The slider doesn’t support ids but you can use the “custom css class” option field to add a custom class to your slider(s). You must activate this option field because it’s hidden by default – this article will show you how: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Then change your code a bit and replace:

    
    #changingcolor {
        -webkit-animation: colorBackground 12s infinite;
        animation: colorBackground 12s infinite;
    }
    

    with

    
    #changingcolor, .changingcolor {
        -webkit-animation: colorBackground 12s infinite;
        animation: colorBackground 12s infinite;
    }
    

    and insert “changingcolor” into the custom css class field (without the “” quotes).

    Regards,
    Peter

    #306446

    THANK YOU * THANK YOU * THANK YOU !!!!!!
    This support team’s help and patience are so precious !
    I’m really grateful to all of you !
    Cheers,
    Marie

    #306458

    Hi!

    Great, glad we could help you :)

    Cheers!
    Peter

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