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
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
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;
}
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.
![]()
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
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...
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; }