Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #651542

    Hi

    With a full-width or full-screen slider I want to have the captions change with each slide and fade in, as it does, but have the button label links stay the same and static. In other words, the button labels would not fade in and out as they do now but would appear static as the slide images and captions fade in and out. Is this possible?

    many thanks

    Peter

    #651956

    Hi Peter,

    I don’t think that is possible unfortunately but send us a link to the site in question and we’ll have a closer look at it.

    Regards,
    Rikard

    #651996

    Hi Rikard

    You can see an example in the link below which has a fullscreen slider with a changing caption and a button label.

    many thanks
    Peter

    #652850

    Hi,

    Add a color section below the slider then apply a unique Section ID to it. Inside that section, add a button. We can move the color section upwards and above the slider with css. Let us know once you’re with it then we’ll give you the proper css codes.

    Best regards,
    Ismael

    #652951

    Hi Ismael

    That sounds a great Idea. I have done what you suggested. The color section with the button has a Section ID of ‘staticbutton’. You can see it in the link below.

    many thanks

    Peter

    #654137

    Hi,

    Thank you for the test page. Add this in the Quick CSS field:

    #staticbutton {
        margin-top: -300px;
    }

    Or use percentage value:

    #staticbutton {
        margin-top: -20%;
    }

    Best regards,
    Ismael

    #654164

    Hi Ismael
    Thanks for that, it is almost perfect. However, while it works fine with a fullwidth slider it doesn’t work with the fullscreen slider. I think the static button is appearing behind the fullscreen slider as it is briefly visible before the slider start. You should be able to see in the links below.

    many thanks

    Peter

    #655327

    Hi,

    It seems to be working fine on my end. Have you figured it out already?

    Best regards,
    Yigit

    #655350

    Hi Yigit

    Not really. I added this
    #staticbutton {
    z-index: 999999!important;
    position: fixed!important;
    }

    which brings the color section to the front now but as you can see it has a black background and I want it to be transparent.
    many thanks

    Peter

    #655352

    Hi!

    Please add following code to Quick CSS

    #staticbutton {
        background: transparent;
    }
    
    #staticbutton .avia-slideshow {
        display: none;
    }

    Cheers!
    Yigit

    #655373

    Hi Yigit
    That’s working perfectly now.

    many thanks

    Peter

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Make slider button labels static’ is closed to new replies.