diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-02-21 22:50:07 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-02-21 22:50:07 -0800 |
commit | 7b939119c99576a9525ff933958eb9d322fa3195 (patch) | |
tree | 46ce78835e48a261e7b935b4efa049580888a9a1 /includes/header.php | |
parent | e4a0d39f734085fdbc4897e42a765f9415d22d3e (diff) | |
download | pathery-7b939119c99576a9525ff933958eb9d322fa3195.tar.xz |
More logically set up the top-bar. Switching this to a Fixed header is now a 2 line change.
Diffstat (limited to 'includes/header.php')
-rw-r--r-- | includes/header.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/header.php b/includes/header.php index c18ae2e..7d9c02d 100644 --- a/includes/header.php +++ b/includes/header.php @@ -155,7 +155,7 @@ function htmlFooter() { function topbar($links) {
global $accepted, $wallColor, $wallEmblem, $request;
- echo '<div id="topbar">';
+ echo '<div id="topbar"><div id="topbarContent">';
foreach ($links as $key => $value) {
if ($request == $key) {
@@ -199,7 +199,7 @@ function topbar($links) { <?
}
echo " </div>";
- echo "</div><div class='topbarSpacer'></div>"; //div id='user'
+ echo "</div></div><div class='topbarSpacer'></div>"; //div id='user'
}
function userDataToJS() {
|