SiteMap is not clickable on Firefox,Chrome and Safari
But works perfecly fine on IE
Anybody have any idea to fix this issue;
Here is the code;
div.logintext {
position: relative;
top: 25%;
display: table-cell;
vertical-align: middle;
text-align: left;
color: #999999;
z-index: 3;
font-size: 12px;
font-weight: bold;
}
<div class="login">
<div class="logintext">
<table width="860px">
<tr>
<td>You are here:
<asp:SiteMapPath ID="SiteMapPath1" runat="server">
</asp:SiteMapPath>
</td>
<td align="right" >
</td>
</tr>
</table>
</div>
</div>
CSS
div.login {
width: 860px;
height: 22px;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 0px;
background-color: #808183;
background-image: url(../Images/100508-loginbar.jpg);
background-repeat: no-repeat;
color: #FDFDFD;
-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
z-index: 2;
}