Fix for problem introduced by previous attempt to fix Internet Explorer issues. Previous fix caused drop-down menu to appear behind circ search form.
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
parent
496b6c8ef4
commit
d1fdb97122
2 changed files with 14 additions and 4 deletions
|
@ -171,13 +171,23 @@ ol li {
|
|||
background-color : #F3F3F3;
|
||||
border-bottom : 1px solid #E8E8E8;
|
||||
line-height : 2em;
|
||||
overflow : auto;
|
||||
}
|
||||
|
||||
*html #header {
|
||||
display : inline-block;
|
||||
.clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.clearfix {display: inline-block;}
|
||||
|
||||
/* Hides from IE-mac \*/
|
||||
* html .clearfix {height: 1%;}
|
||||
.clearfix {display: block;}
|
||||
/* End hide from IE-mac */
|
||||
|
||||
#sitetitle {
|
||||
/* background-image : url("../../img/koha-logo-black.png");
|
||||
background-position : 5px 2px;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div id="header">
|
||||
<div id="header" class="clearfix">
|
||||
|
||||
<div id="toplevelnav">
|
||||
<ul id="toplevelmenu">
|
||||
|
|
Loading…
Reference in a new issue