Search code examples
jquerycssimageprettyphoto

How to change prettyphoto thumbnail style


In my prettyphoto the thumbnail image overlay shows above the large image.I want to show the thumbnail images below the large image.how can I achieve this,any one help?Here below I attached both the images.

My Image

Need to Like This


Solution

  • try to change your css to below, might work for you

        .pp_gallery {
                display: none;
                left: 50%;
                margin-top: 0px;
                position: absolute;
                z-index: 10000;
            }
        div.pp_default .pp_content_container .pp_details {
                margin-top: 30px;
        }
    

    FOR THUMBNAIL CSS

    .pp_gallery {
                display: block;
                left: 50%;
                margin-top: 0px;
                position: absolute;
                z-index: 10000;
            }
    

    IN JS

    Commented out this line

    function(){
        //$pp_pic_holder.find('.pp_gallery:not(.disabled)').fadeIn();
    },
    function(){
        //$pp_pic_holder.find('.pp_gallery:not(.disabled)').fadeOut();
    });