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;
|
background-color : #F3F3F3;
|
||||||
border-bottom : 1px solid #E8E8E8;
|
border-bottom : 1px solid #E8E8E8;
|
||||||
line-height : 2em;
|
line-height : 2em;
|
||||||
overflow : auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
*html #header {
|
.clearfix:after {
|
||||||
display : inline-block;
|
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 {
|
#sitetitle {
|
||||||
/* background-image : url("../../img/koha-logo-black.png");
|
/* background-image : url("../../img/koha-logo-black.png");
|
||||||
background-position : 5px 2px;
|
background-position : 5px 2px;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div id="header">
|
<div id="header" class="clearfix">
|
||||||
|
|
||||||
<div id="toplevelnav">
|
<div id="toplevelnav">
|
||||||
<ul id="toplevelmenu">
|
<ul id="toplevelmenu">
|
||||||
|
|
Loading…
Reference in a new issue