Advertisement
sine184

Align links in footer

May 11th, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. Hello
  2.  
  3. I have a footer where I have two links. How can I make it so that the link "xy" is on the left side of the footer and the link "ab" is no the right side?
  4.  
  5. This is my footer.php file:
  6.  
  7. <?php
  8. /**
  9. * The template for displaying the footer.
  10. *
  11. * Contains the closing of the id=main div and all content after
  12. */
  13. ?>
  14.  
  15. <footer id="colophon" role="contentinfo">
  16. <div id="site-generator">
  17. <?php do_action( 'twentyeleven_credits' ); ?>
  18.  
  19. Home page of the company: <a href="xy" title="xy" rel="generator">xy</a>
  20. The team responsible for app developement: <a href="ab" title="ab" rel="generator">ab</a>
  21. </div>
  22. </footer>
  23.  
  24. <?php wp_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement