Background/Marquee

liunx

Guest
1) For the following site Wallpaper.com (<!-- m --><a class="postlink" href="http://www.wallpaper.com">http://www.wallpaper.com</a><!-- m -->) notice how there's a white background and then that brown background on top of the white? My question: is this just a background image that the creators created so all they had to insert was the <body background="xxx.gif"> tag? Or is this DHTML?<br />
<br />
2) When I insert the <marquee> tag, I have images scrolling (I have about 10-15 images at the top of the page scrolling), how do I make it so that after the first cycle has finished (I have it set to continuos), how do I make it so that there's no big white gap between cycles? Thanks.<!--content-->The brown color is from a table. <br />
<br />
e.g.<br />
copy paste below into a page and view it in your browser.<br />
<br />
<br />
<HTML><br />
<HEAD></HEAD><br />
<BODY><br />
<BR><H1>THIS IS A TABLE TEST</H1><BR><br />
<BR><H3>We can use tables to create the effect</H3><br />
<br><br />
<br><br />
<br><br />
<br />
<p align="center"><br />
<br />
<table width=80% style="background-color: yellow"><br />
<tr><br />
<td>Here is some text</td><br />
<td>Here is some text</td><br />
<td>Here is some text</td><br />
<td>Here is some text</td><br />
</tr><br />
<tr><br />
<td>Here is some text</td><br />
<td>Here is some text</td><br />
<td>Here is some text</td><br />
<td>Here is some text</td><br />
</tr><br />
</table><br />
</p> <br />
</body><br />
</HTML><br />
<br />
<br />
Or use CSS:<br />
<br />
<HTML><br />
<HEAD><br />
<STYLE TYPE="CSS/TEXT"><br />
#brown { width: 400px;<br />
height: 800px;<br />
position: absolute;<br />
top: 150px;<br />
left: 25px;<br />
background-color: yellow;<br />
}<br />
body { background-color: white; }<br />
</STYLE><br />
</HEAD><br />
<BODY><br />
<BR><H1>THIS IS A TABLE TEST</H1><BR><br />
<BR><H3>We can use tables to create the effect</H3><br />
<br><br />
<br><br />
<br><br />
<br />
<DIV ID="brown"><br />
Here is another example of a box using CSS.<br />
</DIV><br />
</body><br />
</HTML><!--content-->Thanks. Before I had posted that message I looked at the source code and I saw the table tags... I was trying to figure out where the heck the tables were :D ... thanks for clarifying that up for me. Any clue about the marquee?<!--content-->
 
Back
Top