View Full Version : How do I finish up this code????


Miss_Thang
02-14-2004, 09:35 PM
Here's my code:

<HTML>
<HEAD>
<META NAME="Author" CONTENT="">
<META NAME="Generator" CONTENT="Jasc Paint Shop Pro 8">
<TITLE>TodoPorAventura//EverythingForAventura</TITLE>
</HEAD>
<BODY>
<IMG NAME="bground4aventura0" SRC="bground4aventura.gif" WIDTH="257" HEIGHT="257" BORDER="0"

USEMAP="#bground4aventura">

<MAP NAME="bground4aventura">
<AREA SHAPE="rect" COORDS="43,133,214,160" HREF="index.html" TARGET="_blank" ALT="entras">
</MAP>

</BODY>
</HTML>

Now how can i put the image in the center and add background color and all that? thnx! i know it must be real simple but i'm slow...lol...;)

pb&j
02-14-2004, 10:06 PM
something like this?

<HTML>
<HEAD>
<META NAME="Author" CONTENT="">
<META NAME="Generator" CONTENT="Jasc Paint Shop Pro 8">
<TITLE>TodoPorAventura//EverythingForAventura</TITLE>
</HEAD>
<BODY background="#c0c0c0">
<table style="width:100%; height:100%;"><tr><td><center>
<IMG NAME="bground4aventura0" SRC="bground4aventura.gif" WIDTH="257" HEIGHT="257" BORDER="0" USEMAP="#bground4aventura">
</td></tr></table>

<MAP NAME="bground4aventura">
<AREA SHAPE="rect" COORDS="43,133,214,160" HREF="index.html" TARGET="_blank" ALT="entras">
</MAP>

</BODY>
</HTML>

Miss_Thang
02-14-2004, 10:14 PM
yes thank you. But my body background isn't showing? I put it in the color I wanted and it's not showing.

stargrl329
02-14-2004, 10:34 PM
Maybe try changing this line:
<table style="width:100%; height:100%;"><tr><td><center>
To this:
<table style="width:100%; height:100%; background-color:#c0c0c0;"><tr><td><center>
I'm not sure if that would help, though; I thought the table might be blocking the background, but then again, tables are transparent by default, aren't they? I'm not sure.. but you could try ;)

Miss_Thang
02-15-2004, 01:11 AM
it worked in the table :D but not out the table the whole thing...this is what i have for the body
<body bground color="#004040">
hope u can hlp

stargrl329
02-15-2004, 01:21 AM
Change "bground color" to "bgcolor" :)

Miss_Thang
02-15-2004, 02:27 AM
Thanks!!!! :D

stargrl329
02-15-2004, 05:32 AM
Yay, no problem.. glad it worked! :)