Advertisement
Guest User

Main Index - Horizontal Scrolling Issues

a guest
May 23rd, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <?php get_header('blog'); ?>
  2. <?php if (have_posts()) : ?>
  3. <?php while (have_posts()) : the_post(); ?>
  4.  
  5.  
  6. <!-- Post -->
  7. <div class="post">
  8.  
  9. <div class="content" style="margin-left:50px;">
  10.  
  11. <a href="<?php the_permalink(); ?>"><h1><?php the_title(); ?></h1></a>
  12. <div class="date"><?php the_time('F j, Y'); ?></div>
  13.  
  14. <?php the_content(''); ?>
  15.  
  16.  
  17. </div>
  18.  
  19. <div class="images"></div>
  20.  
  21.  
  22. </div>
  23. <?php endwhile; ?>
  24.  
  25. <div id="end">
  26. <div class="column">
  27. <?php previous_posts_link('Newer<br />') ?>
  28. <?php next_posts_link('Older') ?>&nbsp;
  29. </div>
  30. </div>
  31.  
  32. <?php else : ?>
  33.  
  34.  
  35. <!-- 404 -->
  36. <div class="column">
  37. <h1 id="fourOhfour">404</h1>
  38. <h3>This page either never existed or doesn't exist anymore :/</h3>
  39. </div>
  40.  
  41. <?php endif; ?>
  42.  
  43. <?php get_sidebar('fullwidth'); ?>
  44.  
  45.  
  46. <?php /*get_footer();*/ include('footer_blog.php') ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement