Viewing 1 reply thread
You must be logged in to reply to this topic.
Hello,
I’d like to do three things to my slider.
1) When I scroll down the page, I’d like for the image,text, and buttons not to move (so it’s like it’s part of the page and not a slider).
2) I’d like for the buttons to have no arrow/icon.
3) I’d like the buttons not to “fade in” on page load.
I’m also having an issue with the button border throughout the site. I set it as the same color as the button background but it refuses to change from white. When I go back to check the color, it says orange, so it’s saving.
Thank you for all the help! :)
Hello,
1-I see you already made this edit as the title and buttons are not moving while browsing the page.
2-Add this code into your custom css box:
i.moon-arrow-right-5 {
display: none;
}
3-Add this code:
.codeless_slider .swiper-slide .buttons.animated {
-webkit-animation-delay: 0s !important;
-moz-animation-delay: 0s !important;
-ms-animation-delay: 0s !important;
-o-animation-delay: 0s !important;
animation-delay: 0s !important;
}
4-edit button border with this css code:
.codeless_slider .swiper-slide .buttons.colors-light a.bordered {
border-color: #FBBF5F !important;
}
Best regards!
You must be logged in to reply to this topic.