With the new CSS tabs in version 4.0 of the cart, the setting in the product details page for tab height/width is no longer needed, the tab's height / width automatically adjust. However, module.css needs to be edited to correct the width not automatically fitting the text. To do this, open the module.css file for the Product Detail module, and replace this:
.tab_container {
border: 1px solid #999;
border-top: none;
overflow: hidden;
clear: both;
float: left; width: 770px;
background: #fff;
}
with:
.tab_container {
border: 1px solid #999;
border-top: none;
overflow: hidden;
clear: both;
float: left; width: 100%;
background: #fff;
}
Thanks for bringing this to our attention,
Christian