Forum Replies Created
-
AuthorPosts
-
This reply has been marked as private.
I updated your code to this, which works on the slider for first round but the slider stops working after going 1 complete circle. Also, this code doesn’t work for title, captions and slides numbering, even though i added classes to target them.
#top .avia-slideshow-inner [class*=”slide-“]{
opacity: 1 !important;
}Thanks,
SushilHi,
After adding above code, when I go to the next slide by clicking the arrow, then then arrows won’t work anymore. you can test that in the link below.
Also, the client doesn’t like any animation including slide sidewards or slide up/down.
Thanks,
SushilHi Jordan,
I tried that didn’t work, i even created no-animation class and put this code from your documentation page but it didn’t work.
/* No Animation */
.no-animation {
opacity: 100!important;
/*CSS transitions*/
-o-transition-property: none !important;
-moz-transition-property: none !important;
-ms-transition-property: none !important;
-webkit-transition-property: none !important;
transition-property: none !important;
/*CSS transforms*/
-o-transform: none !important;
-moz-transform: none !important;
-ms-transform: none !important;
-webkit-transform: none !important;
transform: none !important;
/*CSS animations*/
-webkit-animation: none !important;
-moz-animation: none !important;
-o-animation: none !important;
-ms-animation: none !important;
animation: none !important;
} -
AuthorPosts