How do I increase the width of the bundled listbox on the Product Setup Page (Bundle Setup) and the Product Level Discounts- Select Product on the Manage Coupons page?
To increase the width of the bundle list boxes on the Manage Products screen open the addproducts.ascx page and change the width to something larger as highlighted below:
<asp:ListBox ID="lstFrom" runat="server" SelectionMode="Multiple" Width="300px" Height="120px" />
To increase the width of the Product Level Discounts- Select Product on the Manage Coupons screen open the addcoupon.ascx page and change the width to something larger as hightlighted below:
<asp:DropDownList ID="ddlProduct" runat="server" Width="300px"
AppendDataBoundItems="True" meta:resourcekey="ddlProductResource1">
<asp:ListItem Text="-Select-" Value="0" meta:resourcekey="ListItemResource1" />
</asp:DropDownList>
Both of these pages are located in the \desktopmodules\smith.buynow folder