diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-24 16:02:48 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-24 16:02:48 +0000 |
commit | 1607672a4a376fdcb1fd29a4806bb21a771ab013 (patch) | |
tree | e6fc571fc583f8933598bdd9aee886b95f6ffee9 /templates | |
parent | cf5c4b9dfd310b0e3ebd110db70dc46556332d8c (diff) | |
download | ampache-1607672a4a376fdcb1fd29a4806bb21a771ab013.tar.gz ampache-1607672a4a376fdcb1fd29a4806bb21a771ab013.tar.bz2 ampache-1607672a4a376fdcb1fd29a4806bb21a771ab013.zip |
fixed an overlap problem between ratings and the sidebar, thx burnsides
Diffstat (limited to 'templates')
-rw-r--r-- | templates/menustyle.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/menustyle.inc b/templates/menustyle.inc index 787e7dee..1b785924 100644 --- a/templates/menustyle.inc +++ b/templates/menustyle.inc @@ -111,6 +111,7 @@ } #sidebar li:active { background-color: <?php echo conf('row_color1'); ?>; + z-index:30; } #sidebar li ul { float: left; @@ -120,6 +121,7 @@ /* margin: 0.5em 0 0 -1.1em; /* for horizontal menu; comment out otherwise */ left: -999em; /* this -999em puts the submenu item way off to the left until it's called back by a hover (below) */ + z-index:30; } #sidebar li:hover ul, #sidebar li.sfhover ul { left: auto; /* this calls the submenu back when the parent li is hovered. */ |