If you want to use the ux_gallery images list effect with the default gallery shortcode, please following:
– Download the zip file, unizp it, get functions.php
– Login ftp, upload functions.php to ../themes/real/
– Add caption hover effect: login wp-admin, go to Real/General settings, paste the code to custom CSS box:
dd.gallery-caption {
-webkit-transition: all .3s;
-moz-transition: all .3s;
transition: all .3s;
}
.entry dd.gallery-caption {
margin-bottom: 0;
text-align:center;
position: absolute;
bottom: -100%;
left: 0;
background-color: #fff;
width: 100%;
line-height: 30px;
}
.entry .gallery-item:hover dd.gallery-caption {
bottom:0;
}
-
This topic was modified 3 years, 3 months ago by
BWSM.
-
This topic was modified 3 years, 3 months ago by
BWSM.