Topic-icon Change JFCBLogin font size etc.

Active Subscriptions:

None
12 years 8 months ago #12713 by nikkia
Please let me know how I can change the fonts appearance in the Login Module. Specifically I'd like to make the Register for this Site and Forgot Login? fonts smaller. Also I need to insert a line break before "Remember Me." Right now it is squished behind the login: www.carnivaljunction.com
Thanks
The topic has been locked.
Support Specialist
12 years 8 months ago #12717 by alzander
Nikkia,
Those styles are being inherited from your templet. Looking at your page, the following styles should fix up the module's text in that position though:
.rt-grid-4 ul li a {
font-size: 12px;
}

For the remember me, the id you'd want to style is #form-login-remember. You can try the following, which may do what you're looking for, but again, your template is modifying the look a bit for that module:
#form-login-remember {
display:block;
}

An alternative is to create a template override for the Login module, and simply add to, or re-arrange the output however you want. For info on how to create a template override, see:
www.sourcecoast.com/extensions/troublesh...s#template-overrides

Hope that helps, and good luck,
Ale
The topic has been locked.
Active Subscriptions:

None
12 years 8 months ago #12724 by nikkia
Hi, thanks for the quick reply.
I can't seem to find that first style as you described it. Would it be in my template's template.css file or somewhere else?

I think I found where to amend the "remember me" code that you suggested but it didn't seem to have any affect. Is there an option to just remove that?

I'll try the template override if I can't get these to work.
Thanks.
The topic has been locked.
Support Specialist
12 years 8 months ago #12728 by alzander
That style may not already be in a CSS file. That's just the style name on the page. You may need to add it to your template CSS file. Which one is up to you, depending on your template's structure, but the template.css file is likely a good choice.

As for remember me, if you don't want that functionality, you can simply disable the "System - Remember Me" plugin.

Hope that helps,
Alex
The topic has been locked.