Topic-icon Modal popup not working...

Active Subscriptions:

None
8 years 7 months ago - 8 years 6 months ago #54913 by rrpeters
"Log in" link to Modal popup is not functioning properly... When "Login" is clicked, page goes dark and no popup menu appears.
I think something shows in the bottom left corner but I don't know what it is.

SCLogin Module is at the bottom of page

Please help,
Last edit: 8 years 6 months ago by rrpeters.
The topic has been locked.
Support Specialist
8 years 7 months ago #54916 by mel
Replied by mel on topic Modal popup not working...
There is a conflict with your template's CSS styles. In your template.css file around line 1237 you have the following:
#jsn-master .modal{
position:static;
}

The static breaks it, so try adding
#jsn-master .sourcecoast.modal{
position:fixed;
}
The topic has been locked.
Active Subscriptions:

None
8 years 7 months ago - 8 years 6 months ago #54927 by rrpeters
Replied by rrpeters on topic Modal popup not working...
This worked :D ... thanks! However, the Login/Register item is not in-line with the other Main Menu items
Please see...

Is there a way to make this Module a Menu Item? possibly?
Last edit: 8 years 6 months ago by rrpeters.
The topic has been locked.
Support Specialist
8 years 7 months ago #54932 by mel
Replied by mel on topic Modal popup not working...
That's because your margin and padding need to be adjusted.
Here's an example of a way to adjust it, but you can find the best fit with experimentation:
.sclogin {
margin: 38px 0;
}
.sclogin a {
padding: 11px 20px;
}

Currently, we don't have a built in way to make it a menu item, but it's on our to-do list. Our general suggestion is to use the Modules Anywhere extension to load the SCLogin inside of the Joomla Menu item. You can see pretty simple steps on how to do that here

-Melissa
The topic has been locked.
Active Subscriptions:

None
8 years 7 months ago #54933 by rrpeters
Replied by rrpeters on topic Modal popup not working...
I am sorry...what file and apprx line is this code?
The topic has been locked.
Support Specialist
8 years 7 months ago #54941 by alzander
Replied by alzander on topic Modal popup not working...
As Melissa noted, there's multiple places you could add that. For this, I'd recommend adding it to the custom.css file for your template, or whatever other customization file your template uses. Each template is different, so I can't be specific on where it would go.

The other option would be to create a custom Theme for the SCLogin module. You can read more on how to do that in the SCLogin Theme Guide . The issue with that is that it's more complex and future changes to the SCLogin module would need to be incorporated into your theme, which could be cumbersome or errorprone later.

I hope that helps get you going, but if you need any more assistance, just let us know.

Thanks,
Alex
The topic has been locked.