Index

Creating Tables in the Description

To insert tables into the item description of your eBay listing you need to use HTML or Markdown code. You can edit the description source directly in Editor Mode. The conversion mode popup lets you choose between HTML (“Don’t convert”) and Markdown (“Convert Markdown to HTML”).

Markdown Tables

You can see an example on how to create tables in Markdown here

HTML Tables

This is an example of how to create tables in HTML. You can see how it looks like in here.

<table style="border-spacing: 10px;">
	<tr>
		<th style="text-align: left;">Col 1</th>
		<th style="text-align: center;">Col 2</th>
		<th style="text-align: right;">Col 3 (right aligned)</th>
	</tr>
	<tr>
		<td style="text-align: left;">Row 1</td>
		<td style="text-align: center;">centered 1</td>
		<td style="text-align: right;">$100</td>
	</tr>
	<tr>
		<td style="text-align: left;">Row 2</td>
		<td style="text-align: center;">centered 2</td>
		<td style="text-align: right;">$20</td>
	</tr>
	<tr>
		<td style="text-align: left;">Row 3</td>
		<td style="text-align: center;">centered 3</td>
		<td style="text-align: right;">$3</td>
	</tr>
</table>


<< Repairing Image Links Troubleshooting FTP Settings >>