Topic-icon Login button not clickable - no action after upgrade to 4.2.0

Active Subscriptions:

None
Hi
Great extension you have! That is the first I want to say. Now to my problem. I have just upgraded to 4.2.0 from the previous 4.1.2. Now, after the upgrade, the login button gives no action after clicking. When I uninstall the new version in order to re-install the old one (4.1.2) then all works fine.

What could be the problem here?
Thanks for a hint
Frank
The topic has been locked.
Active Subscriptions:

None
Check this css line .sourcecoast.modal.fade in common.css
Dir: /media/sourcecoast/css/common.css
Opacity:0; seem to not working properly.
It took me a while to make the form appear.
Simply change the opacity:1;
No fading effect, but at least the form show up. :)

And make sure you turn on "Load JQuery" on the "Advanced Tab" in SCLogin Module Parameter.

I hope there is a better solution.
The topic has been locked.
i'm have this problem only on 1 my site (with Artisteer template). and not have problem on another my site (with RockeTheme template)

lvhvan wrote: Check this css line .sourcecoast.modal.fade in common.css
Dir: /media/sourcecoast/css/common.css
Opacity:0; seem to not working properly.
It took me a while to make the form appear.
Simply change the opacity:1;
No fading effect, but at least the form show up. :)

And make sure you turn on "Load JQuery" on the "Advanced Tab" in SCLogin Module Parameter.

I hope there is a better solution.

thanx! this is help me!
The topic has been locked.
Support Specialist
Frank (or anyone else that may still be having this issue),
Please let me know a URL where we can see the problem, and we'll gladly investigate. We thoroughly test the SCLogin module against different templates and configurations, but it's always possible we missed something.

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

None
Hi
Thanks a lot, this solution works for me too...(opacity to 1). But I will Alexander my url to see if he can resolve the real issue behind....
The topic has been locked.
Active Subscriptions:

None

alzander wrote: Frank (or anyone else that may still be having this issue),
Please let me know a URL where we can see the problem, and we'll gladly investigate. We thoroughly test the SCLogin module against different templates and configurations, but it's always possible we missed something.

Thanks,
Alex



Hi

As I stated above, reset the oppacity to 1 is working. But I would like you to have a look if you can, in order to adress the issue really: www.selbsthilfe-paare.ch
The topic has been locked.
Support Specialist
Thanks so much for the link. We were able to determine the cause of the problem. It's a few different CSS problems that only affect Joomla 2.5 when the template doesn't use Bootstrap CSS already.

To fix, edit the common.css file and modifify/edit the following blocks:
.sourcecoast .modal-backdrop {
  z-index: 99990;
}
Change to (please note the removal of the space after .sourcecoast as well as the new styles):
.sourcecoast.modal-backdrop {
  z-index: 99990;
  position:fixed;
  top:0;
  bottom:0;
  right:0;
  left:0;
  background-color: #000000;
}
Update
.sourcecoast .modal-backdrop.fade {
To:
.sourcecoast.modal-backdrop.fade {
And add the following block:
.sourcecoast.modal-backdrop.fade.in {
    opacity: 0.8;
}
We'll include this fix in the 6.2.1 release, planned for (likely) tomorrow. We'd love to hear your feedback if these fixes work for you first.

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

None
I can confirm I had the same issue on two sites (with different templates) And this fix worked, thanks.
The topic has been locked.
Active Subscriptions:

None
9 years 6 months ago - 9 years 6 months ago #47360 by framar2
Thanks very much!

For me it almost working. Last issue I have discovered:
1. When I click on the login button, then it starts all right. If I interrupt the login process, clicking away the login window, then the background keeps being black instead of returning to the normal display of the website. I have to reload the page in order to get back to normal.
2. Unless it is my cache (but I dont think so), then in IE it isn't working at all (have the latest IE version). In Chrome and Firfox it is working except the problem described under 1. (-->was me/cache, sorry)

Is this me or eventually another change of css is needed?

Thanks for your great help!!
Frank
Last edit: 9 years 6 months ago by framar2.
The topic has been locked.
Support Specialist
Frank,
You have a problem in your common.css file. The following line is ending with two { {:
.sourcecoast.modal-backdrop.fade { {
Please remove one of those.

That should get you going!
Alex
The topic has been locked.