Results 1 to 10 of 24

Hybrid View

  1. #1
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,732
    Plugin Contributions
    27

    Default Re: admin, I put html code at product description, but it shows text format at front

    peter888, your stylesheet is telling all table borders to be 0.

    includes/templates/theme695/css/stylesheet.css
    line 28 or so:
    table, td, img {border:0;}

    See image:

    Attachment 13531
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    June 7.2026 - NOW AVAILABLE - Twitch Base8 - Obsidian

  2. #2
    Join Date
    Dec 2013
    Posts
    12
    Plugin Contributions
    0

    Default Re: admin, I put html code at product description, but it shows text format at front

    Quote Originally Posted by twitchtoo View Post
    peter888, your stylesheet is telling all table borders to be 0.

    includes/templates/theme695/css/stylesheet.css
    line 28 or so:
    table, td, img {border:0;}

    See image:

    Attachment 13531
    so, i need change the {border:0;} to {border:1;} right?

  3. #3
    Join Date
    Dec 2013
    Posts
    12
    Plugin Contributions
    0

    Default Re: admin, I put html code at product description, but it shows text format at front

    maybe i need define my own CSS rule, for example by assigning a new class to your table:

    <table class="my_class">...</table>

    and then add the following code at .css file:

    table.my_class {
    border: 1px solid #000000;
    }

  4. #4
    Join Date
    Dec 2013
    Posts
    12
    Plugin Contributions
    0

    Default Re: admin, I put html code at product description, but it shows text format at front

    Quote Originally Posted by twitchtoo View Post
    peter888, your stylesheet is telling all table borders to be 0.

    includes/templates/theme695/css/stylesheet.css
    line 28 or so:
    table, td, img {border:0;}

    See image:

    Attachment 13531
    Twitchtoo, Thanks for your help. I will try to define my own css rule for the table. Another thing, I also put the following html code at product description, it also shows text format: attached code following:

    <div>
    <ul>
    <li>Apply DDS technology, double output, adjustable phase, the highest output frequency is 25MHz</li>
    <li>125MSa/s sample rate, 14bit vertical resolution, 16Kpts wave length</li>
    <li>Output 5 types of standard waveform, internally installed 48 types of waveform</li>
    <li>Internally installed high precision, wide frequency counter, frequency is up to 200MHz</li>
    <li>Abundant modulation function, sweep-frequency output, pulse train output</li>
    <li>Standard collocation connection: USB Device, USB Host, support U Disk storage and software</li>
    <li>Can connect to SDS1000 series digital oscilloscope perfectly, and support remote command control</li>
    </ul>
    <p>
    <b>Included</b>
    </p>
    <ul>
    <li>User Manual</li>
    <li>Certification</li>
    <li>Guaranty Card</li>
    <li>CD (including EasyWave 1.0 computer software system)</li>
    <li>US Power Cord</li>
    <li>USB Cable</li>
    <li>Quick Start</li>
    </ul>
    </div>

    how to fix the above problem. please check the result:
    attached, is actual page on the website where it displayed and correct format attached.

    Click image for larger version. 

Name:	li-text-format.jpg 
Views:	39 
Size:	26.9 KB 
ID:	13532Click image for larger version. 

Name:	li-correct-format.jpg 
Views:	33 
Size:	29.4 KB 
ID:	13533

  5. #5
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,732
    Plugin Contributions
    27

    Default Re: admin, I put html code at product description, but it shows text format at front

    You need to add CSS formatting to your list <ul> with a new class to create the • dots.

    You could cheat it with the keyboard shortcut alt 0149 but I wouldn't recommend it.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    June 7.2026 - NOW AVAILABLE - Twitch Base8 - Obsidian

  6. #6
    Join Date
    Dec 2013
    Posts
    12
    Plugin Contributions
    0

    Default Re: admin, I put html code at product description, but it shows text format at front

    Quote Originally Posted by twitchtoo View Post
    You need to add CSS formatting to your list <ul> with a new class to create the • dots.

    You could cheat it with the keyboard shortcut alt 0149 but I wouldn't recommend it.
    Many Thankss, twitchtoo

  7. #7
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: admin, I put html code at product description, but it shows text format at front

    Quote Originally Posted by twitchtoo View Post
    You need to add CSS formatting to your list <ul> with a new class to create the • dots.

    You could cheat it with the keyboard shortcut alt 0149 but I wouldn't recommend it.
    Quote Originally Posted by gilby View Post
    Probably a similar css rule as well
    But as you refuse to to provide a link to your site and insist on showing images. I cannot "guess" where the problem actually is.
    Quote Originally Posted by peter888 View Post
    Many Thankss, twitchtoo
    So, partially, I hope you realize that this problem could have been solved several hours if not days ago by simply providing 1) everyone a link to your website, 2) at least those that were directly providing input a link to your website, or 3) advising of why a link can not be provided (ie, on a local machine and therefore can not be accessed by the outside world). It seems that option 3 is not the case, based on the discussion, and while many feel the need to be totally independent and solve the problem on their own, there are a lot of helpful (and surprisingly willing) people out there in the forum. Hopefully, you solve this issue and can continue on your way of making improvements to your site to increase sales. Be sure to post your solution.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  8. #8
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: admin, I put html code at product description, but it shows text format at front

    I am seeing table cell borders and list bullets on the page now (link sent a couple of days ago, but I couldn't take time to look over the weekend), so apparently the OP has correctly added/modified the CSS. The <table> and <td> elements (and <ul>/<li>) have class tags added, and there are stylesheet rules for those classes with border properties specified.
    Code:
    .mc_description_tdata {
        border: 1px solid #000000;
        margin: 0;
        padding: 0 0 0 10px;
    }

  9. #9
    Join Date
    Aug 2005
    Location
    Vic, Oz
    Posts
    1,905
    Plugin Contributions
    5

    Default Re: admin, I put html code at product description, but it shows text format at front

    Quote Originally Posted by peter888 View Post
    Twitchtoo, Thanks for your help. I will try to define my own css rule for the table. Another thing, I also put the following html code at product description, it also shows text format: attached code following:



    how to fix the above problem. please check the result:
    attached, is actual page on the website where it displayed and correct format attached
    Probably a similar css rule as well
    But as you refuse to to provide a link to your site and insist on showing images. I cannot "guess" where the problem actually is.

 

 

Similar Threads

  1. Replies: 2
    Last Post: 14 Dec 2013, 05:49 PM
  2. Newsletters not allowing my to put in pictures.. Put the html code via rich text..
    By bobmundo123 in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 18
    Last Post: 26 Dec 2012, 10:32 PM
  3. Add product html form code On Product Description page
    By ivogue in forum Setting Up Categories, Products, Attributes
    Replies: 0
    Last Post: 4 Mar 2009, 07:54 PM
  4. Help - Product description shows as HTML
    By epicwargames in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:20 AM
  5. Product description in product more info in html format but not in product listing?
    By this side up in forum Customization from the Admin
    Replies: 1
    Last Post: 18 Dec 2006, 06:25 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg