Welcome to our HTML help page!
|
| Home | HTML-Index | Basic HTML | HTML Structure |
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 |
|
<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 |
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 |
|
<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.
|
| Image Background in a Table |
|
<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> |
| YOUR TITLE HERE |
| YOUR DESCRIPTION GOES HERE |
| Table With Background Color |
|
<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> |
| YOUR TITLE HERE | ||
| text here | text here | text here |
| text here | text here | text here |