× Joomla Facebook Connect support forum

Topic-icon Facebook login cursor behavior

Active Subscriptions:

None
15 years 7 months ago #5688 by ramez
Hello, thanks for a great product.
If you go to our dev site at dev.zegenie.com, and move your mouse over the facebook login button, you'll notice that the pointer switches between default and pointer. In order to trigger the link, we have to move away from the white text. Could you please help?

May be a related issue, that I am unable to affect the css, as it seems to be in the html output. The 'facebook login' on this site seems bit different with 'id' attributes for the login button that we can affect in a central css file.

Thanks in advance for your help
The topic has been locked.
Support Specialist
15 years 7 months ago #5696 by alzander
It's an issue with your z-indexing. The topbar div is on top of the FB button and has a higher index (2 vs 0), so it's covering up a part of the button. It seems like you tried to fix this by putting a z-index of 10 on the facebook-login div, but that's not the right spot to do it.

If you add the following to your CSS file, it should work (is for me, at least):
dev.zegenie.com/templates/rt_mynxx_j15/css/template.css, line 28
#header {
padding: 5px 0 7px;
z-index: 10; <-- Add this
}

Good luck, and let us know if you have any other questions!
The topic has been locked.