diff options
-rw-r--r-- | themes/default/css/screen.css | 11 | ||||
-rw-r--r-- | themes/default/views/footer.html.php | 2 |
2 files changed, 9 insertions, 4 deletions
diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index 05f0b7ec..c35465a4 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -431,12 +431,12 @@ li.gError select { } #gCredits li:before { - padding: 0 2px 0 2px; - content: "|" + padding: 0 2px; + content: "|"; } #gCredits li.first:before { - content: "" + content: ""; } /** ******************************************************************* @@ -447,6 +447,11 @@ li.gError select { #gLoginMenu { float: right; + margin-top: 7px; +} + +#gLoginMenu li { + display: inline; margin-right: 20px; } diff --git a/themes/default/views/footer.html.php b/themes/default/views/footer.html.php index b5f842b7..830fa003 100644 --- a/themes/default/views/footer.html.php +++ b/themes/default/views/footer.html.php @@ -1,5 +1,5 @@ <? defined("SYSPATH") or die("No direct script access."); ?> -<?= $theme->footer() ?>; +<?= $theme->footer() ?> <ul id="gCredits"> <li class="first"> Powered by <a href="http://gallery.menalto.com">Gallery3</a> </li> <?= $theme->credits() ?> |