Jun. 19, 2011, 02:43 AM
The toggled div, prox-nav, isn't hiding the elements behind it.
[attachment=679]
To compensate I have added a z-index statement to google-css-alt.css.
Before
After
Any complaints or better (I'm not a css expert) solutions?
[attachment=679]
To compensate I have added a z-index statement to google-css-alt.css.
Before
Code:
/* Fix borders for LeftNav toggle */
div.prox-nav {
border-width: 0 1px 1px 0;
border-style: solid;
border-color: black;
}
After
Code:
/* Fix borders for LeftNav toggle */
div.prox-nav {
border-width: 0 1px 1px 0;
border-style: solid;
border-color: black;
z-index:1;
}
Any complaints or better (I'm not a css expert) solutions?