diff options
author | xgizzmo <xgizzmo@ampache> | 2006-09-30 01:14:18 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2006-09-30 01:14:18 +0000 |
commit | 6b7284fab7f49f54f4d72db6c690bbea7f7b7af7 (patch) | |
tree | 176e2187d098112d131499432dc96f891e296878 | |
parent | 1fee2840f53567aa29249c9699faa85d9fb161a1 (diff) | |
download | ampache-6b7284fab7f49f54f4d72db6c690bbea7f7b7af7.tar.gz ampache-6b7284fab7f49f54f4d72db6c690bbea7f7b7af7.tar.bz2 ampache-6b7284fab7f49f54f4d72db6c690bbea7f7b7af7.zip |
Fixed a missing image in default.css and a bit of XHTML tweakage
-rw-r--r-- | login.php | 5 | ||||
-rw-r--r-- | templates/default.css | 1 |
2 files changed, 2 insertions, 4 deletions
@@ -129,17 +129,16 @@ $htmllang = str_replace("_","-",conf('lang')); <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo conf('site_charset'); ?>" /> <link rel="shortcut icon" href="<?php echo conf('web_path'); ?>/favicon.ico" /> +<link rel="stylesheet" href="templates/default.css" type="text/css" /> <title> <?php echo conf('site_title'); ?> </title> <script type="text/javascript" language="javascript"> function focus(){ document.login.username.focus(); } </script> - </head> + <body bgcolor="#D3D3D3" onload="focus();"> -<link rel="stylesheet" href="templates/default.css" type="text/css"> <?php - require(conf('prefix') . "/templates/show_login_form.inc"); if (@is_readable(conf('prefix') . '/config/motd.php')) { diff --git a/templates/default.css b/templates/default.css index bf7cce65..d4eface3 100644 --- a/templates/default.css +++ b/templates/default.css @@ -256,7 +256,6 @@ div#sidebar{ position:absolute; left:5px; top:87px; - background:url("../themes/classic/images/bg_navigation.gif") repeat-y left; } #sidebar h3 { |