Advertisement
TangibleDesign

Untitled

Jul 25th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <Style>
  2. .owl-carousel--custom .owl-dots {
  3. margin-bottom:48px!important;
  4. margin-top:24px!important;
  5. }
  6. </Style>
  7. <div class="owl-carousel owl-carousel--custom">
  8. <?php
  9. if ( $myhome_estate->has_gallery() ) :
  10. foreach ( $myhome_estate->get_gallery() as $myhome_key => $myhome_image ) : ?>
  11. ​<div class="item">
  12. <img src="<?php echo esc_url( $myhome_image['url'] ); ?>">
  13. </div>
  14. <?php
  15. endforeach;
  16. endif;
  17. ?>
  18. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement