I have tried several attempts to centre my Follow Us buttons in my footer but they always seem to float left... how do I centre this?
To center an AddThis toolbox you have to give the div with the class addthis_toolbox a width and define the horizontal margins so that it pushes the div to the center. Here's an example:
div.addthis_toolbox {
width:33%;
margin-left: 33%;
margin-right: 33%;
}
You may have to adjust these widths to suit your design.