Welcome to Doors2Stores



"Bringing understanding and awareness of eBay Stores"

eBay Store owners dedicated to sharing knowledge
and resources for a better shopping community

   

Adding Backgrounds in a Table

 
1.  Adding a Solid Colour Background in a Table

If you want a solid colour in your table, the following is the HTML Code, of course change the "color" in the example to the color that you want to use.  To find a colour, there are many sites around, however I suggest using non dithering colour codes which you can find at http://www.geocities.com/katicksupplies/colour.html.

<table width="35%" align="center" bgcolor="#CC6699">
    <tr>
        <td>&nbsp;</td>
    </tr>
    <tr>
        <td align="center"><font face="Arial" size="3"><b>Your Text Goes Here</b></font></td>
    </tr>
    <tr>
        <td>&nbsp;</td>
    </tr>
</table>


And you would get this



If you copy and paste the code in the text area below in a practice board, you will get what is above.
 
2.  Adding an Image Background in a Table

If you want to add an image background in(side) your table, you will need to have the image you want to use in your background uploaded first. For the example below I will use the following image:



The following is the HTML Code to make a table with this image, of course you will change the "URL of Image" in the example to the actual URL of the image you want to use on your image host site.

<table width="45%" align="center" background="http://www.doors2stores.com/images2/bg-tex321.gif">
    <tr>
        <td>&nbsp;</td>
    </tr>
    <tr>
        <td>&nbsp;</td>
    </tr>
    <tr>
        <td align="center"><font face="Arial" size="3" color="#FFFFFF"><b>YOUR TEXT GOES HERE</b></font></td>
    </tr>
    <tr>
       <td>&nbsp;</td>
    </tr>
    <tr>
       <td>&nbsp;</td>
    </tr>
</table>


And you would get this



If you copy and paste the code in the text area below in a practice board, you will get what is above.
 
Return