Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. $defaults = array(
  2. 'default-color' => '',
  3. 'default-image' => '',
  4. 'default-repeat' => 'no-repeat',
  5. 'default-position-x' => 'center',
  6. 'default-position-y' => 'fixed',
  7. 'default-size' => 'fixed',
  8. 'default-attachment' => 'scroll',
  9. 'wp-head-callback' => '_custom_background_cb',
  10. 'admin-head-callback' => '',
  11. 'admin-preview-callback' => ''
  12. );
  13. add_theme_support( 'custom-background', $defaults );
  14.  
  15. /* parallax */ #home {
  16. background: url(<?php get_background_image(); ?>) no-repeat center center fixed;
  17. display: table;
  18. height: 100%;
  19. position: relative;
  20. width: 100%;
  21. -webkit-background-size: cover;
  22. -moz-background-size: cover;
  23. -o-background-size: cover;
  24. background-size: cover;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement