|
Here are some basic codes you can use to help in making your
templates.
Just cut, copy, and paste into your auction
html description area.
NOTE:
IF YOU JUST ENTERED THIS SITE ONTO THIS PAGE FIRST, I HIGHLY RECOMMEND CLICKING
THE HOME LINK ABOVE AND STARTING FROM THE BEGINNING.
TEMPLATE WITH 2 DIFFERENT BACKGROUNDS
To create a template with 2 different backgrounds using a table. The very first codes for
your template will be:
<table bordercolor=black cellspacing=0 cellpadding=0
width=100% background="your background address here" border=3>
<tr><td>
<center>
<table bordercolor=black cellspacing=0 cellpadding=0
width=100% background="your background address here" border=3>
<tr><td>
In between the above codes and the codes below, you will add all your other information and/or graphics. Next you will
need these ending codes in order for the table to work properly.
</tr></td></table></tr></td></table>
ADDING EXTRA PICTURES TO YOUR TEMPLATE
Here is the html code for adding 1 photo image to your template. You can copy
and paste this code for each photo you want to display in your template. It is
already centered and the line breaks are added after the photo so they line
above each other neatly.
<center><img src="your photo address here" border=2><br><br>
SCROLLING PHOTOS
Here is a cool code if you want your photos to slide across the screen like
scrolling text. I will make this code with 3 photos and the proper speed so they
slide slower for viewing:
<marquee scrollamount="5"><image src="your photo address here" border=2> <img
src="your address here" border=2> <img src="your address here"
border=2></marquee>
NOTE:If you notice in the code above this ( ) after each image. That
is the code for one pixel space, basically putting space inbetween the 2 images.
SCROLLING TEXT
Here are some different way you can use the marquee code:
First is your basic scrolling text code:
<marquee>add all your text here.</marquee>
<marquee loop="2">I love my templates.</marquee>
This will create the marquee to scroll the amount of times you enter, I have
entered it to scroll 2 times then stop until the page has been reloaded
again. It scrolls twice and disappears.
You can give the area of the scrolling text a different background color by
using this code:
<marquee bgcolor=black><font color=white>I LOVE MY
TEMPLATES.<.marquee>
Notice I added the font color (the text color) just before the scrolling text.
If I had not of added any font color it would have used the default color which
is always black, therefor you would not have been able to see the text with the
black backgrounds.
You can also have your text scroll to the right with a simplae code added.
<marquee direction=right></marquee>
Don't forget to always add the ending code </marquee>
Or everything after that marquee will become scrolling.
|