Topic-icon Login Modal Popup Fade

Active Subscriptions:

None
10 years 10 months ago #34001 by alylo
Login Modal Popup Fade was created by alylo
Hello there,

First, sorry for my english (French refractory :rolleyes: ).
Second, thanks for this module responding to what I was looking.
Third, when I click on the login module, the page fade but the module too and I can write in anything. I Use Joomla 2.5.11 with a rockettheme template (graffito). I think this problem is from this template. Can you help me ?

My web site : alylo.fr

regards,
The topic has been locked.
Support Specialist
10 years 10 months ago #34004 by alzander
Replied by alzander on topic Login Modal Popup Fade
Your CSS files are compressed together, so I can't see the exact file to modify. However, the problem is a z-index on #rt-mainbody-surround which is causing everything to be hidden like you're seeing.

If you can find the code in your CSS files, you want to change:
#rt-mainbody-surround {
position: relative;
z-index: 10;
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
to
#rt-mainbody-surround {
position: relative;
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
That should make the modal popup work as expected

I hope that helps, but if not, let us know.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 9 months ago #34043 by alylo
Replied by alylo on topic Login Modal Popup Fade
Hi Alzander,

Thank you for your answer. Effectively, I found the code in my CSS. I delete z-index and now... It is runnig.
Thank you very much for your help and your knowledge.

Best Regards,

Alylo
The topic has been locked.
Support Specialist
10 years 9 months ago #34044 by alzander
Replied by alzander on topic Login Modal Popup Fade
Alylo,
Glad we could help get you going. If you need anything else, just let us know.

Finally, if you haven't already, please consider leaving a rating and review for the SCLogin module on the Joomla Extension Directory:
extensions.joomla.org/extensions/access-...authentication/24054

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
10 years 9 months ago #34053 by alylo
Replied by alylo on topic Login Modal Popup Fade
Hello guys !

I found a new problem with the modular login (not very important). When I click on the Login button, I have the popup but I have no icon "?". (www.alylo.fr)
Someone else have the same problem ?

Thanks !

alylo
The topic has been locked.
Support Specialist
10 years 9 months ago #34082 by alzander
Replied by alzander on topic Login Modal Popup Fade
In your template's CSS file is the following style which is preventing them from displaying:
body .btn [class^="icon-"], body .btn [class*=" icon-"] {
display: none;
}
If you remove that style, it will make the icons appear.. though of course, make sure it doesn't cause other problems.

Let us know how that goes, and good luck,
Alex
The topic has been locked.