Just an issue with z-index, often quite common where menus and slide shows are involved. Add the highlighted as shown to your all-t101.css file:
Code:
body{
margin:0;
color:#383629;
font:14px Arial, Helvetica, sans-serif;
background:#225e78;
min-width:980px;
}
.navbar, .navabar *, .sb-box {
position: relative;
z-index: 1111;
}
img{border-style:none;}
a{
text-decoration:none;
color:#393829;
}
That will work in Firefox, probably all others. If there is still a problem in some, add:
Code:
.navbar, .navabar *, .sb-box {
position: relative;
z-index: 1111!important;
}
Note: Your layout is complex. There is a chance this will mess something else up. As an example, I had to include .sb-box class because without doing so the navbar was then obscuring part of it.
Bookmarks