Advertisement
Guest User

Untitled

a guest
Feb 4th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. <style type="text/css">
  2. #fakeprogress {
  3. background-color:#ceecff;
  4. border:2px solid #ADDEFC;
  5. background-image:url(http://www.personalizedshowercurtains.com/wp-content/uploads/2013/01/ajax-loader1.gif);
  6. background-repeat:no-repeat;
  7. background-position:center 65px;
  8. height:120px;
  9. width:400px;
  10. position:absolute;
  11. top:50%;
  12. left:50%;
  13. margin-top:-60px;
  14. margin-left:-200px;
  15. z-index:100;
  16. }
  17. #fakeprogress h2 {
  18. text-align:center;
  19. margin:0;
  20. padding:25px 0 0 0;
  21. font-weight:bold;
  22. font-size:24px;
  23. font-family:sans-serif;
  24. }
  25. </style>
  26.  
  27. <script type="text/javascript">
  28. jQuery.noConflict();
  29. jQuery(document).ready(function($) {
  30.  
  31. $("#gform_wrapper_1").after("<div id='fakeprogress'><h2>Uploading Files.. Please Wait</h2></div>");
  32. $("#fakeprogress").hide();
  33. $("#gform_wrapper_1 .gform_footer input").click(function () {
  34. $("#fakeprogress").delay(3000).show('slow');
  35. });
  36.  
  37. });
  38. </script>
  39.  
  40. <?php get_header(); ?><!--Content--><div id="content"><div class="single_wrap"><div class="single_post"> <?php if(have_posts()): ?><?php while(have_posts()): ?><?php the_post(); ?> <div <?php post_class(); ?> id="post-<?php the_ID(); ?>"> <div class="post_content"> <h2 class="postitle"><?php the_title(); ?></h2> <div class="single_metainfo"><?php edit_post_link(); ?></div> <div class="thn_post_wrap"><?php the_content(); ?> </div> <div style="clear:both"></div> <div class="thn_post_wrap"><?php wp_link_pages('<p class="pages"><strong>'.__('Pages:').'</strong> ', '</p>', 'number'); ?></div> </div> </div> <?php endwhile ?> </div> <div class="comments_template"><?php comments_template('',true); ?></div> <?php endif ?> </div> <!--PAGE END--> <?php if(of_get_option('nosidebar_checkbox') == "0"){ ?><?php get_sidebar();?><?php } ?></div><?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement