Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <div id='header-img-left'>
  2. <img src='media/images/image1.png' alt='Text' class='img-left'></img>
  3. </div>
  4. <?php
  5. if (null !== $_SESSION['pagetitle']) {
  6. echo "<div id='header-content'><h1>" . $_SESSION['pagetitle'] . "</h1></div>";
  7. }
  8. ?>
  9. <div id='header-img-right'>
  10. <?php
  11. if (isset($_SESSION['auth'])) {
  12. echo "<a href='out.php?wantout=yes'>Log Out</a>";
  13. }
  14. ?>
  15. <img src='media/images/image2.png' alt='Text' class='img-right'></img>
  16. </div>
  17.  
  18. #header-img-left {
  19. float: left;
  20. }
  21.  
  22. .img-left {
  23. float: left;
  24. max-width: 100%;
  25. height: auto;
  26. }
  27.  
  28. #header-img-right {
  29. float: right;
  30. }
  31.  
  32. .img-right {
  33. float: right;
  34. max-width: 100%;
  35. height: auto;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement