
Originally Posted by
swamyg1
I don't suppose there is any way to add other html in the description field? For example, I want to add a bullet list <ul> with <li>'s... is this even remotely possible?
Most BASIC html tags will work, so <ul><li>...</li></ul> will be OK... written in a single line, eg:
Code:
<p><b>Product Features</b></p><ul><li>Child friendly</li><li>Cheap to run</li><li>Highly accurate</li><li>User serviceable</li></ul>
Will result in:
Product Features
- Child friendly
- Cheap to run
- Highly accurate
- User serviceable