I am using the prettyPhoto jquery plugin to show a gallery of pictures on my page, and it doesn't work for some reason. I am trying this on my localhost and I use Zend Framework.

This is my code:

<script type="text/javascript" src="<?php echo URLgenerator::getScryptURL('jquery.js'); ?>"></script>
<link rel="stylesheet" href="<?php echo URLgenerator::getStyleURL('prettyPhoto/css/prettyPhoto.css'); ?>" type="text/css" media="screen" charset="utf-8" />
<script src="<?php echo URLgenerator::getScryptURL('prettyPhoto/js/jquery.prettyPhoto.js'); ?>" type="text/javascript" charset="utf-8"></script>

The main part:

<?php 
                    $photos = $project->getPhotos();
                    foreach($photos as $photo):
                ?>
                        <a href="<?php echo $photo->getPhotoURL(); ?>" rel='prettyPhoto[pp_gal]'>
                            <img src="<?php echo $photo->getPhotoURL(); ?>" alt="" class="ProjectPageImage" />
                        </a>
                <?php 
                    endforeach;
                ?>

at the end of the page:

<script type="text/javascript" charset="utf-8">
    $(document).ready(function(){
        $("a[rel^='prettyPhoto']").prettyPhoto({
            deeplinking: false
        });
    });
</script>

What I get is a weird sort of gallery appended at the end of the page under everything, and not the "lightbox" popup I should get.

link|improve this question

Are you sure the CSS is loaded? I see getScryptURL, maybe you meant getScriptURL? – Shef Sep 10 '11 at 11:46
Yes, that is a spelling mistake, but it does do what it supposed to. – Vadiklk Sep 10 '11 at 12:08
If you look in the markup source, is the CSS file loaded? – Shef Sep 10 '11 at 12:12
Shef, you are a genius :) . Forgot I am working with a css which is inside the scripts folder and not the styles folder. Write your answer so I could vote it up and accept it! – Vadiklk Sep 10 '11 at 12:36
feedback

1 Answer

up vote 1 down vote accepted

Since you mention that the markup is being added, but is not displaying the way you expect it to be. Then you should check the CSS file is loaded, because it seems like the styling is not applied to the elements.

link|improve this answer
You are right, I am calling the wrong CSS. – Vadiklk Sep 10 '11 at 12:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.