Topic-icon Adjust the Login Module

Active Subscriptions:

None
9 years 8 months ago #46409 by mardom
Adjust the Login Module

I tried some setting in CSS without success

Need to apply the following settings in the module Sclogin

Right margin = 17px
Link color = White

I need to make this change in my Template (permanent)

I want to remove the "/" character between the links Login and Registration

File Attachment:
The topic has been locked.
Support Specialist
9 years 8 months ago #46411 by alzander
Replied by alzander on topic Adjust the Login Module
I see you already added the following to your custom template file:
.sclogin-modal-links a {
margin-right: 17px;
color: #fff !important;
}
The margin isn't working because you didn't add !important. You can fix it that way, or alter the class selector to be even more specific, like::
.sourcecoast.sclogin-modal-links a {
margin-right: 17px;
color: #fff;
}
I think that should work.

As for the "/", that's defined in our en_gb.mod_sclogin.ini file. You can make that any other character, or blank, by changing that file or using the Joomla language override system.

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