jquery-facebook-multi-friend-selector
jquery-facebook-multi-friend-selector copied to clipboard
Centering Friends within the friend container
I removed the width attribute from the #jfmfs-friend-container to let the container expand to the parent div's size but now the friend icons are left justified. This produces a large white spaces from the right side of the container. I tried to play around with the float attribute with no avail - any suggestions how I would be able to fix this?
This is due to the .jfmfs-friend
elements being floated left
. Remove the float
then add display: inline-block; vertical-align: top;
to .jfmfs-friend
and text-align: center;
to a parent container div.