Hi,
I'm using the gallery with the "Taras" effect, because it is the only one with the title in center on mouseover.
I do not want the box around it, so I added this to my css:
[class^=os-gallery-all-in-one-main] .img-block.taras-effect .os-gallery-caption::before,
[class^=os-gallery-album-tabs-main] .img-block.taras-effect .os-gallery-caption::before,
[class^=os-gallery-tabs-main] .img-block.taras-effect .os-gallery-caption::before {
border:none !important;
box-shadow: none !important;
}
This works fine! But now I want that the image has a zoom on mouseover like you habe it in the effect "Dimas"
Is it possible to resolve this?
Thanks![/quote]
Hi,
For change this effect in
Joomla gallery, Please add to CSS next code:
Code: |
.img-block.taras-effect img{
transition: .3s !important;
}
.img-block.taras-effect:hover img{
transform: scale(1.2) !important;
transition: .3s !important;
}
|
Regards
OrdaSoft team