Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. CSS code in my a Custom CSS Plugin for wordpress that injects(s) this on page load? '.home' tells it to just to interject that that code onto the home page
  2.  
  3. .home .superslider {
  4. position: absolute;
  5. background-image: url("http://lunartalent.co.uk/slider.jpg");
  6. }
  7.  
  8.  
  9. -----
  10.  
  11. In my jobify.php page (used as home/index.php on my site)
  12. <?php
  13. /**
  14. * Template Name: Jobify Homepage
  15. *
  16. * @package Jobify
  17. * @since Jobify 1.0
  18. */
  19.  
  20. get_header(); ?>
  21. <div class="superslider">
  22. <?php echo do_shortcode( '[hslider id=1]' ); ?>
  23. </div>
  24.  
  25. <div id="primary" class="content-area">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement