PDA

View Full Version : Table Help


00XxXxX00
02-22-2003, 06:33 PM
I had an old site, which made everything for you. It was www.press-x.net now I want to do everything on my own, but I would like the table that goes on the side, and the tables that go in thee middle, as it is on www.press-x.net (http://www.press-x.net) Is anyone here willing to give me the skeleton code ( the colors and layout) to me? Thanks.

justame
02-22-2003, 08:39 PM
00X...
oneee thing ya might wanna just a correct® ??? is thisss line...
<td bgcolor="000033" colspan="4">

ummm...in the 'tr' just a bove® the tr thattt td colspan=4 is in??? its just a three® td's wide ...nottt four...

orrr was thattt supposed to be in the table just a below® it that doesss have 'four' tds in its 'tr'???

00XxXxX00
02-22-2003, 10:58 PM
huh? That was confusing. Well is there any way to get the code for those tables in my old web page. (www.press-x.net) If anyone knows the cde it would be great. I want the thin little table at the top to put a topic in, and the middle for the text. That is all, no bottom table or anything, just middle and thin top one for a title.

meow
02-22-2003, 11:24 PM
Go to your site. Choose View | Source or similar from your browser's menu. Copy or Save As. :)

00XxXxX00
02-22-2003, 11:37 PM
no..too much junk going on in there, I just want a simple nice code.

meow
02-22-2003, 11:48 PM
now I want to do everything on my own
Hey man, only one way to do that. ;)

ronaldb66
02-24-2003, 09:16 AM
I'd suggest first learning about HTML and CSS; one of my favorite tutorial sites is W3Schools (http://www.w3schools.com/).
To get something close to your site you could copy the present code and strip all the unnecessary garbage, deprecated elements and inappropriate presentation code and throw in some styles for presentation; it's going to be a lot of work though.
Another approach would be to start from scratch, using some ideas incorporated in the present code; not something you do in five minutes either. Better start simple, and expand your pages as your skills grow.
In any case, considering the amount of work I don't think it's realistic to expect anyone to create a skeleton for you, besides it's not easy for someone to figure out exactly what you want.

tommyt
02-26-2003, 02:56 AM
It's definitely not the best, but this simple html source will give you an idea of how to proceed to build your site. I find thatwww.htmlgoodies.com (http://www.htmlgoodies.com) is pretty good in explaining the basic stuff.

<html>
<head>
<title>Press X Dot Net</title>
</head>
<body>
<table border="1" width="100%">
<tr>
<td width="100%">
<p align="center">Press X Dot Net</td>
</tr>
</table>
<table border="1" width="100%">
<tr>
<td width="18%" valign="top">
<table border="1" width="100%">
<tr>
<td width="100%">Press X-Site Menu</td>
</tr>
<tr>
<td width="100%">&nbsp;</td>
</tr>
</table>
</td>
<td width="65%" valign="top">
<table border="1" width="100%">
<tr>
<td width="100%">The Getaway</td>
</tr>
<tr>
<td width="100%">&nbsp;</td>
</tr>
</table>
</td>
<td width="17%" valign="top">
<table border="1" width="100%">
<tr>
<td width="100%">Land of th3 3d4d</td>
</tr>
<tr>
<td width="100%">&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>