Advertisement
Guest User

Untitled

a guest
Mar 13th, 2012
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.92 KB | None | 0 0
  1. CSS:
  2. -------------------------------
  3. #hosting-text
  4. {
  5. margin-top: 5px;
  6. padding-top: 10px;
  7. float: right;
  8. clear: left;
  9. font-weight: bold;
  10. }
  11.  
  12. #logo-hcc
  13. {
  14. margin-top: 8px;
  15. padding-top: 10px;
  16. background: url('../images/hcc.png') no-repeat center center transparent;
  17. width: 65px;
  18. height: 24px;
  19. display: block;
  20. float: right;
  21. clear: left;
  22. }
  23. #logo-bit
  24. {
  25. margin-top: 8px;
  26. padding-top: 10px;
  27. padding-right: 10px;
  28. background: url('../images/bit.png') no-repeat center center transparent;
  29. width: 65px;
  30. height: 22px;
  31. float: right;
  32. clear: left;
  33. display: block;
  34. }
  35.  
  36.  
  37. .footer-bottom-hosting
  38. {
  39. width: 310px;
  40. text-align: right;
  41. float: right;
  42. }
  43.  
  44. PHP:
  45. -----------------------------------------
  46. <?php
  47. // Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!
  48. echo '
  49. <div id="footer_section">
  50. <div class="container">
  51. <dl class="footer-content">
  52. <dt>Legal Disclaimer</dt>
  53. <dd><p>&copy; 2010 Canonical Ltd. Ubuntu and Canonical are registered trademarks of Canonical Ltd.</p></dd>
  54. </dl>
  55. <dl class="footer-content">
  56. <dt>Content license</dt>
  57. <dd>
  58. <ul class="footer-links">
  59. <li class="footer-item"><a href="/test/?q=/node/100" class="footer-link">Images</a></li>
  60. <li class="footer-item"><a href="/test/?q=/node/101" class="footer-link">texts</a></li>
  61. </ul>
  62. </dd>
  63. </dl>
  64. <dl class="footer-content">
  65. <dt>More Ubuntu</dt>
  66. <dd>
  67. <ul class="footer-links">
  68. <li class="footer-item"><a href="http://ubuntu.com/getubuntu/download/" class="footer-link">Get Ubuntu</a></li>
  69. <li class="footer-item"><a href="http://brainstorm.ubuntu.com/" class="footer-link">Ubuntu Brainstorm</a></li>
  70. <li class="footer-item"><a href="http://ubuntuforums.org/" class="footer-link">Ubuntu Forums</a></li>
  71. <li class="footer-item"><a href="http://spreadubuntu.neomenlo.org/" class="footer-link">Spread Ubuntu</a></li>
  72. </ul>
  73. </dd>
  74. </dl>
  75. <dl class="footer-content">
  76. <dt>Forum Links</dt>
  77. <dd>
  78. <ul class="footer-links">
  79. <li class="footer-item"><a id="button_xhtml" href="http://validator.w3.org/check?uri=referer" target="_blank" class="footer-link new_win" title="', $txt['valid_xhtml'], '"><span>', $txt['xhtml'], '</span></a></li>
  80. ', !empty($modSettings['xmlnews_enable']) && (!empty($modSettings['allow_guestAccess']) || $context['user']['is_logged']) ? '<li class="footer-item"><a id="button_rss" href="' . $scripturl . '?action=.xml;type=rss" class="footer-link new_win"><span>' . $txt['rss'] . '</span></a></li>' : '', '
  81. <li class="footer-item last"><a id="button_wap2" href="', $scripturl , '?wap2" class="footer-link new_win"><span>', $txt['wap2'], '</span></a></li>
  82.  
  83. </ul>
  84. </dd>
  85. </dl>
  86.  
  87. <li class="copyright-theme">
  88. <a href="https://code.launchpad.net/ubuntu-nl-artwork/light-smf-theme" title="https://code.launchpad.net/ubuntu-nl-artwork/light-smf-theme" target="_blank"><b>Ubuntu Theme by Ronnie and Yordi</b></a>
  89. </li>
  90. <li class="copyright-smf">', theme_copyright(), '</li>
  91. </ul></details>
  92. <div style="clear:both;"></div>
  93. </div>
  94. <li class="footer-bottom-hosting">
  95. <span class="hosting-text">Hosting</span>
  96. <a id="logo-hcc" title="logo hcc" href="http://www.hcc.nl/" alt="hcc! logo"></a>
  97. <a id="logo-bit" title="logo bit" href="http://www.bit.nl" alt="Bit logo"></a>
  98. </li>
  99.  
  100. </div>';
  101.  
  102. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement