Get an access to all 178 items designed and developed by Engine Templates team plus all the future items which will be released over the course of your club subscription. Price starting from $59.00
Are you using Joomla! 3 with Unite Slider or Joomla! 4 with Smart Slider? You can turn slide animation off via Slider Settings, did you try it?
I want to disable animation on h1 text and everything else on intro photo.
Please open file 'custom.css' from template css files, go to line 190 and remove CSS as below
.slider:hover .slider-colum, .tilte-colum:hover h3 {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.images-title:hover h3 {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
color: #fff !important;
}
I changed animation-duration to 0s and it solved everything.
Thank you :)
Thank you, glad your issue has been resolved.