Hey everyone, hopefully a quick fix for someone. I have installed the "Hello Bar" plugin on fishnpack.com but it isn't clickable in Chrome or Firefox. IE (surprisingly) works fine. Can anyone help me troubleshoot?
Peter Harrison answers:
It is because your "user-nav" is positioned absolute.
If you edit your styles.css file and replace this:
#user-nav {
z-index: 999;
display: block;
position: absolute;
top: 0;
left: 0;
height: 50px;
width: 100%;
}
With this:
#user-nav {
z-index: 999;
display: block;
position: relative;
top: 0;
left: 0;
height: 50px;
width: 100%;
}
It should work fine.
Thanks
Pete
Kyle Hungate comments:
thank you! i had to also do the same for the #user-nav ul. all seems to be working now.
Peter Harrison comments:
No worries! Glad I could help! :)