legendz AcemanWolf Jan 13, 2015 #1 how do I align Facebook, Twitter, and Google+ on one straight line? Attachments image.jpg 75.9 KB Views: 15
Mark Administrator Staff member Jan 13, 2015 #2 might need to put a container around that facebook widget. See the bootstrap documentation for how alignment works: http://getbootstrap.com/css/#grid
might need to put a container around that facebook widget. See the bootstrap documentation for how alignment works: http://getbootstrap.com/css/#grid
Basti Administrator Staff member Jan 13, 2015 #3 Target the fb widget in your user.css That widget by default is display: block and needs a change Code: #plugin_facebook_like { display: inline-block; vertical-align: top; margin-top: 2px; } the alignment top is because the widget by default has a bottom alignment and the little margin to align it a little since all the different widgets have a different height
Target the fb widget in your user.css That widget by default is display: block and needs a change Code: #plugin_facebook_like { display: inline-block; vertical-align: top; margin-top: 2px; } the alignment top is because the widget by default has a bottom alignment and the little margin to align it a little since all the different widgets have a different height