diff options
| author | Chad Kieffer <chad@2tbsp.com> | 2008-11-10 02:16:09 +0000 |
|---|---|---|
| committer | Chad Kieffer <chad@2tbsp.com> | 2008-11-10 02:16:09 +0000 |
| commit | 5e385398f00cd77ced7b91892c02c8c97db0848e (patch) | |
| tree | 8700b366644dc858547431a9276fcfd52423b34f /themes/default/views | |
| parent | c2162a645a47b8759bf07319cec69cf9cbff4f67 (diff) | |
IE fixes. Default theme now looks roughly the same in IE and Firefox. We need to avoid using absolute and relative positioning for our primary layout containers (i.e. gHeader, gFooter, etc.).
Diffstat (limited to 'themes/default/views')
| -rw-r--r-- | themes/default/views/header.html.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/themes/default/views/header.html.php b/themes/default/views/header.html.php index 7fe44398..6aa3f410 100644 --- a/themes/default/views/header.html.php +++ b/themes/default/views/header.html.php @@ -4,7 +4,7 @@ <h1><?= $item->title_edit ?></h1> <div id="gLoginMenu"> - <a href="#"><?= _("Register") ?></a> | + <a href="#"><?= _("Register") ?></a> | <a href="#"><?= _("Login") ?></a> </div> @@ -16,14 +16,14 @@ <li><a href="#"><?= _("ADMIN") ?></a></li> </ul> +<form id="gSearchForm"> + <input type="text" class="text" value="<?= _("Search Gallery ...") ?>"/> + <input type="submit" class="submit" value="search" /> +</form> + <ul id="gBreadcrumbs"> <? foreach ($parents as $parent): ?> <li><a href="<?= url::site("album/{$parent->id}") ?>"><?= $parent->title_edit ?></a></li> <? endforeach ?> <li class="active"><?= $item->title_edit ?></li> </ul> - -<form id="gSearchForm"> - <input type="text" class="text" value="<?= _("Search Gallery ...") ?>"/> - <input type="submit" class="submit" value="search" /> -</form> |
