HomeHome Product Discus... Product Discus...SmithCartSmithCartProduct detail page text not fitting?Product detail page text not fitting?
Previous
 
Next
New Post
9/17/2010 10:54 AM
 

It seems that the product details page is kind of "Overlapping" outside of the boundary box... I haven't played with the style sheets for this... is there something else I should look at?

 
 Login to download attachment
New Post
9/21/2010 6:01 AM
 

Bump.... any thoughts about this?

 
New Post
9/21/2010 10:36 AM
 

Open up the productdetail.ascx page starting on line 194 try adding a width to the tab panels or labels:

<cc1:TabPanel ID="TabPanel1" runat="server" HeaderText="Tab 1">
<ContentTemplate>
<asp:Panel runat="server" ID="Panel1" ScrollBars="Auto">
<asp:Label ID="lblDescription" runat="server" CssClass="SmithProdText" />
</asp:Panel>
</ContentTemplate>
</cc1:TabPanel>


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
9/21/2010 12:04 PM
 

That didn't fix it.

According to Firebug, it's the DIV for TabContainer1 that is inline-styled to 600px wide, but it looks like it needs to be about 580px wide, because of the indent from the left where the text is starting.

There's nothing in ProductDetails.ascx that would do this that I can find, and it's not coming from a stylesheet; it looks like a code-behind style: statement inline that's doing it.

I'll send another screen shot.

As you can see in the screen shot, the highlighted area is the problem, and it hard-coded for 600px (instead of about 580)

 
 Login to download attachment
New Post
9/21/2010 1:29 PM
 

In your productdetails.ascx line 190 do you have the following line of code commented out:

<%--<div class="myTabs">--%>


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
9/21/2010 1:38 PM
Accepted Answer 

We found the issue the tabcontrol and panel were being set to the same width in code behind. We have set the panels in the tab control to 20 pxels less then the tab control so the text doesnt flow outsite the right margin I am posting a hotfix on the downloads page now.

-Scott


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
9/21/2010 1:54 PM
 

I'll watch for the hotfix. Thanks, Scott.

 
New Post
9/21/2010 2:05 PM
 

Will this hotfix correct the issue which I have already raised in that I need to make the tab container larger than 600px which I could do in previous version but did not work in the latest release. I did not get a reply to my previous post that raised this.

 
New Post
9/21/2010 2:24 PM
 

Yes if you specify the tab width in the buynow module settings you should be able to set the tab control width to larger than 600px. The hotfix sets the tab tanels to 20px less than the tab control. You can try to apply the hotfix to see if that fixes it for you. Also if you open up the productdetails.ascx and go to line 192 and remove the width=600px in the following line of code it should allow a greater width:

<cc1:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0" CssClass="google" Width="600px" >


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
9/21/2010 2:27 PM
 

The hotfix solved it... but I'll keep that in mind if someone wants me to tweak those tabs (hopefully not though.... lol)

Thanks again!

 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartProduct detail page text not fitting?Product detail page text not fitting?