문제

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

도움이 되었습니까?

해결책

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();
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top