Hi Prasad,
For decrase the table width, look for the class CartDetailsMasterTABLE inside ...\DesktopModules\Templates\StyleSheet\Common.css. Concerning the product name on two line, you have to modify CartDetail.ascx. Look for this line:
<asp:label id="lblTitle" runat="server" cssclass="Normal"> <%# DataBinder.Eval(Container.DataItem, "ProductTitle") %> </asp:label>
You could replace it by something like:
<asp:label id="lblModelNumber" runat="server" cssclass="Normal"> <%# DataBinder.Eval(Container.DataItem, "ModelNumber") %> </asp:label><br/>
<asp:label id="lblModelName" runat="server" cssclass="Normal"> <%# DataBinder.Eval(Container.DataItem, "ModelName") %> </asp:label>
Gilles