Quote Originally Posted by easypcs View Post
Thx for that small fix, I however have decided to roleback a little as its a little byond my skills to redesign product info totally

I do however seem to have an issue with a few side boxes when I enable them, which are categories and cart, they both as you can see allign to the right edge.

http://www.elwyns-services.co.uk/deals/

I have uploaded enhanced categories mod which highlights the problem more, as I was hopeing to mod this contribution to look like the tabbed horizontal menus.

The problem is showing with or without enhanced categories contribution.

Any thoughts on this problem plz.
#1) (categories) Remove the padding for the categories:

#categoriesContent {
text-align:left;
padding-left:15px;
}

#2) (cart) I only see the total right aligned, but to get the total centered, you can change the text align of .cartBoxTotal to center, as below:

.cartBoxTotal {
text-align:center;
font-weight:bold;
}