Move connected account providers at top in login

Move connected account providers at top in login

TickTackk

Well-known member
TickTackk submitted a new resource:

Move connected account providers at top in login - Move connected account providers at top in login

Before:
View attachment 226770

After:
View attachment 226771

In template login move the block starts from
HTML:
<xf:if is="$providers is not empty">
before
Code:
<div class="blocks">
and then move
HTML:
<div class="blocks-textJoiner"><span></span><em>{{ phrase('or_separator') }}</em><span></span></div>
right before the closing xf:if tag.

Read more about this resource...
 
Hi Ticktackk, thanks. I got it working. It works as you posted. Thanks!
One question, I would like to make the button bigger (like on register page). Do I just use a bigger graphic?
 
Those social media connection buttons are pure CSS so you would need to add something like this to extra.less:
Less:
.button,
a.button // needed for specificity over a:link
{
    &.button--provider
    {
        font-size: 1em; // adjust this to suit your font size needs and the icon will be automatically resized
    }
}
 
Top Bottom