What you're asking for can be done with either CSS or a template override. We'd suggest creating your own SCLogin theme,
as described here
, to put any style changes in.
a. Set the background color of the button
.sourcecoast a.btn.btn-primary {
background: #cc0000;
}
b. Create a template override for mod_sclogin/tmpl/login.php. Around line 28, change the following line:
echo '<div class="sourcecoast sclogin-modal-links sclogin"><a ' . $loginClass . ' href="#login-modal" role="button" data-toggle="' . $modalName . '">' . JText::_('MOD_SCLOGIN_LOGIN') . '</a>';to
echo '<div class="sourcecoast sclogin-modal-links sclogin"><a ' . $loginClass . ' href="#login-modal" role="button" data-toggle="' . $modalName . '"><img src="YOUR_LINK_HERE.png"></a>';
c.
.sclogin {
text-align: right;
}
d.
.sourcecoast.modal {
left: 80%;
}
-Melissa