Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <?php if(is_single()):
  2. $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
  3. ?>
  4. <?php if ( has_post_thumbnail() ) { ?>
  5. <div class="featured_image" style="background: url('<?php echo $image[0]; ?>') no-repeat scroll <?php the_field('bg_vert_posisjon'); ?> <?php the_field('bg_hor_posisjon'); ?> / cover; min-height: 700px; position: relative; width: 100%; background-attachment: <?php the_field('bg_oppforsel'); ?>">
  6. <?php } else { ?>
  7. <div class="no_feature_image"></div>
  8. <?php } ?>
  9.  
  10. background: url('http://skarpsinn.no/wp-content/uploads/2014/04/banner_oeva.png') no-repeat scroll center center / cover
  11.  
  12. background: url('http://skarpsinn.no/wp-content/uploads/2014/04/banner_oeva.png') no-repeat scroll center center;
  13. min-height: 700px;
  14. position: relative;
  15. width: 100%;
  16. background-attachment: initial;
  17. background-size: cover;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement