Change layout of Social Buttons (Mail, Twitter, Facebook)

Hi, is there a way to change the layout of the buttons? They are stacked vertically and make very unbalanced design, which is a real waste of space because shifts the product descriptions downwards.



Thanks

screen.png

Change via CSS using the my_changes method:-



.social-buttons_li {
display: inline;
width: auto;
float: left;
}


You may need to change the 'margin' values too depending on your layout.

Many thanks, I have to study Mychanges first, not sure how to apply. Thank you!