Page 1 of 1

Description Copy/paste Problem on tamplate Templatemoster

Posted: Thu Jul 04, 2013 2:29 am
by Alex3791
Hi! I have a problem with template , when I copy description from my old store ,which was on Prestashop , and paste to open cart description look like that ( it is not format automatically , so the text is not fit between borders ) :
https://aladdin-store.net/ink-cartridge ... li-8y.html

and before it was like that : http://copy.aladdin-store.net/canon-ink ... ridge.html .

Plus it also given a problem with Google Merchandise account data feed :

Attribute Name Attribute Value
title CLI-8Y
link https://aladdin-store.net/cli-8y.html&c ... anguage=en
description <h1 class="pheading" style="font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; font-weight: bold; color: rgb(0, 0, 0); line-height: normal;">Canon CLI-8M magenta ink cartridge - Compatible</h1> <table border="0" cellpadding="5" cellspacing="0" height="100%" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif; line-height: normal;" width="100%"> <tbody> <tr> <td align="center"> <table border="0" cellpadding="5" cellspacing="0" width="98%"> <tbody> <tr> <td class="tableTitles" style="background-image: linear-gradient(to left bottom, rgb(160, 220, 253) 0%, rgb(0, 163, 239) 100%); color: rgb(255, 255, 255); font-weight: bold; padding: 8px; font-size: 15px;">Product Info</td> </tr> <tr> <td class="Productinfo"> <p style="color: rgb(55, 55, 55); font-family: Verdana, Geneva, sans-serif; font-size: 1em; padding-left: 12px; padding-right: 12px;">SuppliesOutlet.com's Canon CLI-8M compatible ink cartridge is guaranteed to meet or exceed original Canon printer .......

Thank you for any help ! Alex

Re: Description Copy/paste Problem on tamplate Templatemos

Posted: Thu Jul 04, 2013 3:01 am
by pedro1993
Hi Alex,

Welcome to the forum :) if you are ever going to post code you should wrap in in the code tags.

There are two problems with your template I see.

The first one is that you have this line of code twice, like this:

Code: Select all

<div style="display: block;" id="tab-description" class="tab-content">
// some html code
<div style="display: block;" id="tab-description" class="tab-content">
// some more html code
That div id and class should only be coded in once.

Even if you fix that, the overflow will still be there because the CSS file has gave the DIV a width of 778px.

To change that go to catalog/view/theme/theme186/stylesheet/stylesheet.css and look at line 1177. Round about there you should change:

Code: Select all

width: 778px; 
to

Code: Select all

width: 100%; 

Once you have fix these two points it should look fine :)

Let me know how you get on,

Peter ;)
Alex3791 wrote:Hi! I have a problem with template , when I copy description from my old store ,which was on Prestashop , and paste to open cart description look like that ( it is not format automatically , so the text is not fit between borders ) :
https://aladdin-store.net/ink-cartridge ... li-8y.html

and before it was like that : http://copy.aladdin-store.net/canon-ink ... ridge.html .

Plus it also given a problem with Google Merchandise account data feed :

Attribute Name Attribute Value
title CLI-8Y
link https://aladdin-store.net/cli-8y.html&c ... anguage=en
description <h1 class="pheading" style="font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; font-weight: bold; color: rgb(0, 0, 0); line-height: normal;">Canon CLI-8M magenta ink cartridge - Compatible</h1> <table border="0" cellpadding="5" cellspacing="0" height="100%" style="color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif; line-height: normal;" width="100%"> <tbody> <tr> <td align="center"> <table border="0" cellpadding="5" cellspacing="0" width="98%"> <tbody> <tr> <td class="tableTitles" style="background-image: linear-gradient(to left bottom, rgb(160, 220, 253) 0%, rgb(0, 163, 239) 100%); color: rgb(255, 255, 255); font-weight: bold; padding: 8px; font-size: 15px;">Product Info</td> </tr> <tr> <td class="Productinfo"> <p style="color: rgb(55, 55, 55); font-family: Verdana, Geneva, sans-serif; font-size: 1em; padding-left: 12px; padding-right: 12px;">SuppliesOutlet.com's Canon CLI-8M compatible ink cartridge is guaranteed to meet or exceed original Canon printer .......

Thank you for any help ! Alex

Re: Description Copy/paste Problem on tamplate Templatemos

Posted: Thu Jul 18, 2013 5:25 am
by Alex3791
Hi Pedro1993 ! Sorry for late answer . Thank for your help , I fix it but use code :

Code: Select all

width: fit-content;
. I did't try

Code: Select all

width: 100%;
May it will work too, but like I say

Code: Select all

width: fit-content;
work for me fine. Thank again!

Re: Description Copy/paste Problem on tamplate Templatemos

Posted: Thu Jul 18, 2013 5:39 am
by Alex3791
Still can't find

Code: Select all

<div style="display: block;" id="tab-description" class="tab-content">
// some html code
<div style="display: block;" id="tab-description" class="tab-content">
// some more html code
Where is it? Sorry I am newbie in coding :)

Re: Description Copy/paste Problem on tamplate Templatemos

Posted: Thu Jul 18, 2013 11:07 am
by pedro1993
In the catalog/view/theme/your_template/template/product./product.tpl file :)
Alex3791 wrote:Still can't find

Code: Select all

<div style="display: block;" id="tab-description" class="tab-content">
// some html code
<div style="display: block;" id="tab-description" class="tab-content">
// some more html code
Where is it? Sorry I am newbie in coding :)