Topic-icon Login/new user stylesheet

Active Subscriptions:

None
11 years 4 months ago #50602 by gearit
My login page emboss the login forms and button in a centered box.
Above it I put you login with social buttons.

I've found that:
- you're enclosing your module button in a <span></span> tag
- such a block contains buttons that are tagged with a "pull left" class

Actual login page is available here: www.radaeepdf.com/login

It seems the decision to use the <span> tag instead a <div> don't allow me to override your stylesheet as I'd like.
I will modify your scripts and substitute the span tag with a div one.
Hopefully I'll be able to get the result I'm willing.

Why you decided such a structure?
<span>
<div>Login:</div>
<div>facebook</div>
<div>LinkedIn</div>
<div>GitHub</div>
</span>
The topic has been locked.
Support Specialist
11 years 4 months ago #50603 by alzander
Replied by alzander on topic Login/new user stylesheet
There's a containing div around that that you're missing as well:
<span class="sourcecoast login"><div class="row-fluid">
<div>Login With </div>
<div class="social-login facebook jfbcLogin pull-left">
...
With that, you can use styles like:
.sourcecoast.login div.row-fluid { // do something }
That should give you the same flexibility as a div by itself, but lets others style things how they want as well.

I hope that helps, but if you need anything else, just let us know.

Thanks,
Alex
The topic has been locked.