Topic-icon Style

Active Subscriptions:

None
10 years 6 months ago #42199 by giadon
Style was created by giadon
Dear sirs,
I really like the login module of your website including the popup window for registration.
From what I understand is made with SCLogin, isn't it?
If so, how may I create a similar layout with SCLogin? The standard layout is not so nice :-(

Thanks!

Kind regards!
The topic has been locked.
Support Specialist
10 years 6 months ago #42213 by alzander
Replied by alzander on topic Style
The SCLogin popup only allows for logging in. There isn't a way to register using a popup.

As for the looks of the module, there is a "Themes" option in the SCLogin module. Please try switching to "SourceCoast", which has a look similar to this site.

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

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

None
10 years 6 months ago #42239 by giadon
Replied by giadon on topic Style
Dear Alex,
I've tried but nothing changed.

I'm referring to the Login Popup style... The one I have using SCLogin doesn't have colors/options you have.

Thanks a lot!
The topic has been locked.
Support Specialist
10 years 6 months ago #42251 by alzander
Replied by alzander on topic Style
Please post the URL of the page where the popup isn't showing the styles properly. Once we can take a peek, we should be able to tell if our theme's CSS file is loading properly or help investigate what may be going wrong.

As for the settings, are you saying you can't find the "Theme" option in the SCLogin module parameters? It should be the first option. If you can't see it, please make sure you are using the latest v4.0.x release.

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

None
10 years 6 months ago #42267 by giadon
Replied by giadon on topic Style
Thanks for your kind support.

Please visit my page at development.vogliadiescursioni.com.

I properly choose the SourceCoast theme for the module but it doesn't change the final result.

Thanks again!
The topic has been locked.
Support Specialist
10 years 6 months ago #42281 by alzander
Replied by alzander on topic Style
Thanks for the report. I looked further into the error and the problem is coming from the order that we load our CSS files. Please edit the /modules/mod_sclogin/mod_sclogin.php file. Around line 154, you'll see:
//if ($params->get('loadBootstrap'))
$document->addStyleSheet(JURI::base(true) . '/media/sourcecoast/css/sc_bootstrap.css');
Copy and delete those 2 lines. Then, around line 86 you should see:
// Load our CSS and Javascript files
$document = JFactory::getDocument();
Add the first block below this section so it looks like:
// Load our CSS and Javascript files
$document = JFactory::getDocument();
//if ($params->get('loadBootstrap'))
$document->addStyleSheet(JURI::base(true) . '/media/sourcecoast/css/sc_bootstrap.css');

That should hopefully get the styles to apply properly. Let me know how it goes. We'll be making this change in the next release as well.

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

None
10 years 6 months ago #42304 by giadon
Replied by giadon on topic Style
Dear Alex,
Thanks for your kind reply.

I've tried what you suggested. It seems a little bit better but it doesn't really fix the problem.
Please may you have a look and see how it looks like now?

Thanks in advance!
The topic has been locked.
Support Specialist
10 years 5 months ago #42342 by alzander
Replied by alzander on topic Style
The forgot links on the right are definitely off. Not sure why that is. I'd recommend editing the following file (or, preferably, making a Login Theme in your Joomla template directory):
/media/sourcecoast/themes/sclogin/sourcecoast.css

In there, update the following style:
a.forgot.btn {
height: 64px !important;
}
That should make the height look correct and make things a bit more clean. You can add any styles to that file you want as well to adjust things as necessary.

I hope that helps get you going, but if you need more help, just let me know.

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

None
10 years 5 months ago #42413 by giadon
Replied by giadon on topic Style
Thanks a lot!
It worked fine! Now the forgot links have the same size of the text boxes.
However, the "container" box is still larger than the entire content. :-(
Furthermore, (although it's not related to this topic) how can I show the social network links?

Thanks a lot!
The topic has been locked.
Support Specialist
10 years 5 months ago #42459 by alzander
Replied by alzander on topic Style
Ahh, the width issue looks like a bug we haven't heard about before. When the social login buttons aren't displayed, we're still making the login area small and saving space for them. To fix, you'll need to edit the /modules/mod_sclogin/mod_sclogin.php file. Around line 174, you'll see:
else if ($orientation == 'side' && $loginButtonType == "icon_text_button")
{
    $joomlaSpan = 'span8';
    $socialSpan = 'span4';
}
Update the $joomlaSpan to span11, like:
else if ($orientation == 'side' && $loginButtonType == "icon_text_button")
{
    $joomlaSpan = 'span11';
    $socialSpan = 'span4';
}

The social buttons themselves will only show if you have JFBConnect installed. To learn more about, or purchase, JFBConnect, see our features page:
www.sourcecoast.com/joomla-facebook/

I hope that helps answer your questions,
Alex
The topic has been locked.