Jan
4
4
Adding Background eBay Auction Template
Posted in eBay Tutorials by kdwhd
0
Adding a Background eBay Auction Template
If you want to have background images or a background color behind your listing, you will want to enclose your listing in a table set at 100%. Because your listing is placed in an iframe, the background image or color will only fill the iframe, not your entire screen. Your listing may also seem a little offset to the left. Again, this is because of the invisible scroll bar on the right.
1 2 3 4 5 6 7 8 9 10 11 |
<table align="center" width="100%" border="0" cellspacing="0" cellpadding="0" style="background-color: #cccccc;">
<tr>
<td style="padding: 20px;">
<table align="center" width="100%" border="0" cellspacing="0" cellpadding="0" style="background-color: #ffffff;">
<tr>
<td>Listing Code</td>
</tr>
</table>
</td>
</tr>
</table>
|
A padding of 20 is added to the data cell that contains the actual auction code. This allows for the image/color specified in the first table to show up around the listing.
|









