how do I move the "Add to Cart" button to the right towards the right column when viewing an individual product?
Printable View
how do I move the "Add to Cart" button to the right towards the right column when viewing an individual product?
Have you tried floating right the containing div?
Try adding a float: right directive in the CSS for div#cartAdd. Something like:
In CSS:
Code:div#cartAdd {
float: right;
}