Plugin Author
Gabor
(@nextendweb_gabor)
Hi Hassan! This is a bug, so you can fix it, if you open this file:
\wp-content\plugins\nextend-smart-slider2-full\plugins\nextendsliderwidgetbullet\transition\transition\style.css
Look for this code around line 120.:
.nextend-bullet-container.nextend-bullet-transition-simple-scale .nextend-bullet.active,
.nextend-bullet-container.nextend-bullet-transition-simple-scale .nextend-bullet:HOVER{
transform: scale(1);
}
And change it, so it would have the scaling for other browsers too:
.nextend-bullet-container.nextend-bullet-transition-simple-scale .nextend-bullet.active,
.nextend-bullet-container.nextend-bullet-transition-simple-scale .nextend-bullet:HOVER{
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
After this you should click on Refresh cache at your slider, so it would use this new css code.
We will put this into the next version, so you won’t have to worry about it in the future.
Thread Starter
Hassan
(@hassanhamm)
Great! Waiting for the update!
Thanks nextendweb_gabor, I have the same bug and fix it by changing style.css as you say .