diff options
-rw-r--r-- | themes/default/stylesheet.css | 7 | ||||
-rw-r--r-- | themes/default/templates/index.tpl | 6 |
2 files changed, 7 insertions, 6 deletions
diff --git a/themes/default/stylesheet.css b/themes/default/stylesheet.css index e6635b8..c57c8a9 100644 --- a/themes/default/stylesheet.css +++ b/themes/default/stylesheet.css @@ -51,7 +51,7 @@ td.searchfor { vertical-align: middle;
}
-.logo {
+.menu {
font-weight: bolder;
padding: 5px;
height: 30px;
@@ -62,8 +62,9 @@ td.content { border-top: solid 1px #000000;
}
-.menu {
- padding: 5px;
+.logo {
+ float: none;
+ background-color: #eeeeee;
}
td.index_header {
diff --git a/themes/default/templates/index.tpl b/themes/default/templates/index.tpl index 4aee6cf..72a5ef0 100644 --- a/themes/default/templates/index.tpl +++ b/themes/default/templates/index.tpl @@ -1,9 +1,7 @@ {include file="header.tpl"} <body onload="init_phpfspot();"> - <div class="logo" colspan="2"> - {$page_title} - </div> <div class="menu"> + <div style="float: left;"> <a href="javascript:showPhotoIndex();" onclick="click(this);" title="Show Photo Index"> <img src="resources/photo_index.png" alt="photo index" /> </a> @@ -14,6 +12,8 @@ <img src="resources/credits.png" alt="show credits" /> </a> </div> + <div class="logo"> {$page_title}</div> + </div> <table> <tr> <td class="options"> |