diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-31 23:16:58 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-31 23:16:58 +0000 |
commit | 3ac90131cee1432d8278cdeff47961a50d8c7125 (patch) | |
tree | f9854f3bd5e4f174704ab1b804c0b26e4910368b /templates/header.inc | |
parent | a145e33a37948eda1d83e0272ee46faf6148d0e7 (diff) | |
download | ampache-3ac90131cee1432d8278cdeff47961a50d8c7125.tar.gz ampache-3ac90131cee1432d8278cdeff47961a50d8c7125.tar.bz2 ampache-3ac90131cee1432d8278cdeff47961a50d8c7125.zip |
* Updated CSS to improve compatibiliy and make appearance more consistant (Thx Spocky)
* Fixed some issues with the Amazon Album art gathering created when I re-wrote it
Diffstat (limited to 'templates/header.inc')
-rw-r--r-- | templates/header.inc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/templates/header.inc b/templates/header.inc index cc184748..a2e53e05 100644 --- a/templates/header.inc +++ b/templates/header.inc @@ -46,7 +46,13 @@ if (conf('use_rss')) { ?> <body> <script src="<?php echo $web_path; ?>/lib/javascript-base.js" language="javascript" type="text/javascript"></script> <script src="<?php echo $web_path; ?>/modules/kajax/ajax.js" language="javascript" type="text/javascript"></script> -<div id="maincontainer"> +<div id="maincontainer" <?php + if ($GLOBALS['theme']['orientation'] == 'horizontal') { + echo " class=\"horizontal_menu\" "; + }else{ + echo " class=\"vertical_menu\" "; + }?>> + <div id="topbar"><!-- This is the topbar row --> <div id="topbarleft"> <a href="http://www.ampache.org"> |