Zoom Box & Flat Box

Question 1: Zoom box
Is it possible to have the icon on the zoom box displayed without the hover over, so it is visible over the image the whole time?

Question 2: Flat Box
 Is it possible to change the side that the icon bar is on the Flat Box, I am using a few on this page and it would be good if we could have the images on the right side display right icon bars.

Comments

  • Hi,

    1. To make it possible, please use the following css:
    .zoom_box .desc { opacity: 1 !important; }
    2. This one, can be done with the following css:
    .flat_box .photo_wrapper .icon { left: unset !important; right: 0 !important; }
    .flat_box:hover .photo_wrapper .icon, .flat_box a:hover .photo_wrapper .icon {
        -webkit-transform: translateX(90px);
        transform: translateX(90px);
    }
Sign In or Register to comment.