• mikehaceman

    (@mikehaceman)


    Hi

    No admin options is not a huge problem. It works so install and use … cant complain much.
    In my case I want it even more simple:

    – while clicking on Quick View – lightbox open with image, title, description, add to cart.
    – I want to have only image

    So i used css:

    .wpb_wl_summary {
    display: none !important;
    float: right;
    width: 0%;
    display: inline;
    }

    Unfortunately that leaves a lot of white empty space on the right. Can you tell me how to adjust the lightbox/image so it will show only the image that is full size in the center of lightbox popup?

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Author WPBean

    (@wpbean)

    Hi,

    You can add the following css for that –

    
    .wpb_wl_summary {
        display: none;
    }
    
    .wpb_wl_images {
        float: inherit;
        width: 100%;
        margin: 0;
        display: block;
    }
    
    .wpb_wl_quick_view_content {
        padding: 0;
        max-width: 500px;
    }

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Remove all – leave only image’ is closed to new replies.