diff options
Diffstat (limited to 'includes/header.php')
-rw-r--r-- | includes/header.php | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/includes/header.php b/includes/header.php index 2a6e940..d0a54bd 100644 --- a/includes/header.php +++ b/includes/header.php @@ -62,16 +62,7 @@ function htmlFooter() { global $footerLinks;
- echo "<div class='divide'>
-
- <div class='socialButtons buttons'>
- <a href='http://www.facebook.com/Pathery' target='top' title='Facebook'><img alt='Facebook' src='images/btns/facebook.png' /></a>
- <a href='http://www.reddit.com/r/Pathery' target='top' title='Reddit'><img alt='Reddit' src='images/btns/reddit.png' /></a>
- <a href='https://twitter.com/Pathery' target='top' title='Twitter'><img alt='Twitter' src='images/btns/twitter.png' /></a>
- <a href='https://plus.google.com/105148482605711831543' target='top' title='Google Plus'><img alt='Google Plus' src='images/btns/googleplus.png' /></a>
- </div>
-
- </div>";
+ echo "<div class='divide'></div>";
echo " <div class='footerArea' style='width:100%;clear: both'><ul id='triple'>";
foreach ($footerLinks as $key => $value) {
echo "<li><a href='$key'>$value</a></li>";
@@ -79,9 +70,16 @@ function htmlFooter() { echo " </ul></div>";
?>
-
- <div id="copy" style='width:100%;clear: both'>
- Copyright © 2011-2012 pathery.com
+ <div class="copyAndButtons">
+ <div id="copy">
+ Copyright © 2011-2012 pathery.com
+ </div>
+ <div id="socialButtons" class='buttons'>
+ <a href='http://www.facebook.com/Pathery' target='top' title='Facebook'><img alt='Facebook' src='images/btns/facebook.png' /></a>
+ <a href='http://www.reddit.com/r/Pathery' target='top' title='Reddit'><img alt='Reddit' src='images/btns/reddit.png' /></a>
+ <a href='https://twitter.com/Pathery' target='top' title='Twitter'><img alt='Twitter' src='images/btns/twitter.png' /></a>
+ <a href='https://plus.google.com/105148482605711831543' target='top' title='Google Plus'><img alt='Google Plus' src='images/btns/googleplus.png' /></a>
+ </div>
</div>
<br />
|