George and Susan Welcome to our HTML help page!
Home | HTML-Index | Basic HTML | HTML Structure

BACKGROUND IN YOUR AUCTION

I recommend placing your background in a table. Full page backgrounds no longer work on eBay! Use caution using backgrounds, you may make the text difficult to read
Full Page Background Using An Image

Full page backgrounds no longer work on eBay!
If you want a background for your description click here

Full page backgrounds may not show up in all browsers!
<style> <!--body {background: url(YOUR-URL-HERE)}--> </style>
<body background=YOUR-URL-HERE>

Replace the red text with your URL. Be sure to start your URL with http://




Full Page Background Using Colors

Full page backgrounds no longer work on eBay!
If you want a background for your description click here

If you want a full page background color in your auction you need to make a small colored square in your Paint program, convert it to a .gif or .jpg file and upload it to your server the same way you would upload an image.

<style> <!--body {background: url(YOUR-URL-HERE)}--> </style>
<body background=YOUR-URL-HERE>




Fixed Full Page Backgrounds

Full page backgrounds no longer work on eBay!
If you want a background for your description click here

The bgproperties is fixed so it is not going to scroll!

<style> <!--Body {background: url(YOUR-URL-HERE); background-attachment: fixed;}--> </style>
<body background=YOUR-URL-HERE bgproperties=fixed>




Backgrounds in a Table
The best way to put a background in your auction is to use a table. You can use color or an image for your background.
  1. To learn a lot more on how to make a table Click here
  2. To learn how to make a colored background in your table Click here
  3. To learn how to add an image as a background in your table Click here



Image Background in a Table

The below example is a table using an image for a background.
Type this:
down
<table border=1 width="80%" cellpadding=5 background="YOUR-URL-HERE" align=center>
<tr><td align=center>
<font color=blue size=5>
YOUR TITLE HERE
</font>
</td> </tr>
<tr><td align=center>
<font color=blue size=3> YOUR DESCRIPTION GOES HERE
</font>
</td></tr></table>

And you get the following:
down

YOUR TITLE HERE
YOUR DESCRIPTION GOES HERE



Table With Background Color

The below example is a table using color for a background.
Type this:
down
<table border=1 width="80%" cellpadding=5 bgcolor=orangered align=center>
<tr><td colspan=3 align=center>
<font color=white size=5>YOUR TITLE HERE </font>
</td></tr>
<tr><td bgcolor=turquoise align=center>
text here
</td>
<td bgcolor=slateblue align=center>
text here
</td>
<td bgcolor=yellow align=center>
text here
</td>
</tr><tr>
<td bgcolor=salmon align=center>
text here
</td>
<td bgcolor=violet align=center>
text here
</td>
<td bgcolor=crimson align=center>
text here
</td>
</tr> </table>

And you get the following:
down

YOUR TITLE HERE
text here text here text here
text here text here text here



NOTE:
When using a background image You will need to upload your background image to a Image Host.


Back
My home page