Hi all,
I’m trying to reposition the button on our 1st slide only.
I’ve added the following code, but as you can imagine, it’s applying it to all the button on all slides.
Is there a way to add it so it just applies to the 1st slide?
.slideshow_align_caption .avia-button {
top: -20px;
left:46%;
}
Thanks!
Hey Drebosio,
Use this css instead:
.slide-1 .slideshow_align_caption .avia-button {
top: -20px;
left:46%;
}
Best regards,
Jordan Shannon
Hey Jordan,
Works perfectly! Didn’t realize the class were called “slide-#” =P
Can mark this as resolved/close this :)