I think I may have been able to solve it, it may not be correct but it appears to have worked.
When displaying a product, the product title, image and "add to cart" buttons were aligned left.
I have altered the show_default.php file and added the following
<div id="hikashop_product_top_part" class="hikashop_product_top_part" align="center"> (Added the align="center") to make sure the title was centered
<div id="hikashop_product_left_part" class="hikashop_product_left_part span6" style="width: 460px; "> (added the width parameter)
<div id="hikashop_product_right_part" class="hikashop_product_right_part span6" style="width: 460px; "> (added the width parameter)
This appeared to make the Price and the Picture align to the center
Finally I added align="center" to the Add To Cart section -
<div id="hikashop_product_quantity_main" class="hikashop_product_quantity_main" align="center">
I'm not sure if this is correct, or if there was an easier way, but it appears to have worked.