Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #688102

    Hi,

    I’d like to add buttons to my layerslider, such the ones of this site:

    http://lyonperformancesolutions.com/

    Can you help me? thank you

    #688369

    Hey Frank1986,

    This might help you out getting started: https://support.kreaturamedia.com/faq/

    Best regards,
    Rikard

    #688389

    create a new text layer – edt transitions (from right to center or something else) – and here we go : edit Link & Attributes
    if the button has to have hover states it will be nice to have here a class (f.e. slider-button)

    see that little test here: Link

    #689996

    Thank you all for your answers.
    I compared the layerslider and the fullpage slider and I choose fullpage slider because is more simple to use and works great.

    Now I have a problem that have been already faced in others conversation, such:

    I have created a fullpage slider but it look bad on mobile (only the central part). So I read on your previous post that is possible to create two sliders, one for desktop (fullpage) and the other for mobile (fullwidht).
    I’ve created the two sliders and I uploaded the images with the correct dimensions. But now I can’t make one to be shown only in desktop and the other to be shown only on mobile. I added your CSS codes etc etc but I think I am doing something wrong: they are still both shown on mobile and desktop. What do I have to do exactly? Thank you in advance
    (I’ve already turned on the Custom CSS class for ALB elements)

    Thank you

    #690421

    you have to work with media querries:

    f.e.

    @media only screen and (min-width: 989px) {
    .mobile-slider {
    display: none;
    }
    }

    so this slider is not shown if the screen width is more or equal to 990px

    you have to decide the split point for that – if the split point is 768px

    @media only screen and (max-width: 767px) {
    .desktop-slider { display: none !important; }}
    @media only screen and (min-width: 768px) {
    .mobile-slider { display: none !important; }}

    max and min width if it is above 768px the one is shown the other is not
    if it is beneath 768 vice versa – thats all

    #691096

    Hi,

    Thank you @Guenni007 for extending your great support.


    @Frank1986
    please try the above solution and let us know if you have more questions :)

    Best regards,
    Vinay

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