Topic-icon Login structure oddity

Active Subscriptions:

None
10 years 10 months ago - 10 years 10 months ago #54248 by [email protected]
l upgraded easyblog last night and while messing up my interaction with jlex review it seems it may have also knocked my facebook button over.
now i am experimenting with my login and registration methods anyway in the meantime I'd like to know how to fix this in case i keep it the same.


File Attachment:
Last edit: 10 years 10 months ago by [email protected].
The topic has been locked.
Support Specialist
10 years 10 months ago #54255 by alzander
Replied by alzander on topic Login structure oddity
It looks like there's 2 styles affecting that button. Both are in the /components/com_easyblog/themes/wireframe/styles/style.min.css file:
div#fd.eb .sourcecoast.login .social-login.facebook {
  float: none !important;
}
That's what's making the button shift to the left. Without that style, it's right after the Amazon button.
div#fd.eb .sourcecoast.login .social-login.facebook>a {
  display: inline-block;
  margin-top: 15px;
}
The margin-top is what's pushing the button down by 15px.

Those files are compressed, and I'm not sure what those styles are supposed to be affecting, but they are definitely targeting the JFBConnect Facebook login button.. for better or worse.

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