you've got a typo in the css entry,
change this:
#ask question {
text-align: center;
}
to this:
#askQuestion {
text-align: center;
}
that will center the button on the page
if you want to move the attributes to the center, at line 247 in your stylesheet replace this:
#productAttributes {
}
with this:
#productAttributes {
margin: 0 auto;
width: 110px;
}
and if you change both the #productAttributes and the #askQuestion both to sit in the middle, they'll sit one above the other.
or you could have one on each side of the page, button on the left and attributes on the right, underneath the add to cart button,
change them to look like this:
#askQuestion {
float:left;
}
and
#productAttributes {
float:right;
}
or if you want them to sit side by side, on the right of the page, underneath the add to cart button, change them to this:
#askQuestion {
float: right;
margin: 5px 20px 0 0;
}
and this:
#productAttributes {
float:right;
}
