Advertisement
Guest User

Untitled

a guest
Oct 21st, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. On line 77 to 79 you'll see the code below:
  2.  
  3. <li data-thumb="<?php echo aq_resize($gallery_img['image'],80,80,true); ?>">
  4. <a href="<?php echo $gallery_img['image']; ?>" title="<?php echo $gallery_img['caption']; ?>" class="post-gallery" rel="gallery-group"><img src="<?php echo aq_resize($gallery_img['image'],620,420,true,true,true); ?>" /></a>
  5. </li>
  6.  
  7. Change it to:
  8.  
  9. <li data-thumb="<?php echo aq_resize($gallery_img['image'],80,80,true); ?>">
  10. <div class="gallery-img"><a href="<?php echo $gallery_img['image']; ?>" title="<?php echo $gallery_img['caption']; ?>" class="post-gallery" rel="gallery-group"><img src="<?php echo aq_resize($gallery_img['image'],620,420,true,true,true); ?>" /></a>
  11. <span class="gallery-caption"><?php echo $gallery_img['caption']; ?></span></div>
  12. </li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement