Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. ...
  2.  
  3. <div id="projectImgs"><?php
  4. foreach ($imgsFromProject as $extraImg) { ?>
  5. <div class="wrapperExtraImg" data-image="<?php echo 'admin/' .$extraImg->image_path; ?>" style="background-image:url(<?php echo 'admin/' .$extraImg->image_path; ?>)"></div>
  6. <?php } ?>
  7. </div>
  8.  
  9. ...
  10.  
  11. ...
  12.  
  13. #projectImgs {
  14. font-size: 0;
  15. margin: 30px auto;
  16. width: 100%;
  17. max-width: 900px;
  18. }
  19. .wrapperExtraImg {
  20. text-align: center;
  21. cursor: pointer;
  22. position: relative;
  23. width: 435px;
  24. display: inline-block;
  25. background-repeat: no-repeat;
  26. background-position: center center;
  27. background-size: cover;
  28. height: 435px;
  29. }
  30.  
  31. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement