inherit
33125
0
Nov 1, 2024 19:51:28 GMT -8
Crupocalypse
738
November 2004
darkverdict
|
Post by Crupocalypse on Jun 25, 2005 17:29:01 GMT -8
i thought i would try and construct a code this is what i have so far, it is for table code....
<table border="1"> <tr> <th> <td> </tr> </table>
I dont' know what i need to do turn turn this into an actual code Thanks for the help.
|
|
inherit
31940
0
Jul 27, 2011 13:50:35 GMT -8
¿J-pop?
2,286
October 2004
darkryu2
|
Post by ¿J-pop? on Jun 25, 2005 17:32:01 GMT -8
It depends on what you're trying to do
|
|
inherit
33125
0
Nov 1, 2024 19:51:28 GMT -8
Crupocalypse
738
November 2004
darkverdict
|
Post by Crupocalypse on Jun 25, 2005 17:33:38 GMT -8
i am trying to make a welcome table sry this is going to be my first code, i dunno what to add to this. my friend explained to me what i have now and left, so i don't know what to add from here.
|
|
inherit
31940
0
Jul 27, 2011 13:50:35 GMT -8
¿J-pop?
2,286
October 2004
darkryu2
|
Post by ¿J-pop? on Jun 25, 2005 17:38:48 GMT -8
Did you work out how the final result will look? You should do that first, like on an image program, paper, etc
|
|
inherit
33125
0
Nov 1, 2024 19:51:28 GMT -8
Crupocalypse
738
November 2004
darkverdict
|
Post by Crupocalypse on Jun 25, 2005 17:47:29 GMT -8
here is a simple layout, i didn't add text but i have it with colors, grey=sides, red=middle (main) img299.echo.cx/img299/2968/untitled1fu.gifText Middle: Welcome to Smiley Fusion Updates: (updates go in the middle underneath the text "Welcome To Smiley Fusion" ) Left Side: Staff: Admin Crupocalypse, Acer, (whatever more i get) G-Mod: Moderator: Member of the month: (have a place where i can add the following text: "The member of the month is: (member) Right Side: Smiley Of The Week (i can place an image with a smiley of the week) _______________________________________-- Do i need more?
|
|
inherit
31940
0
Jul 27, 2011 13:50:35 GMT -8
¿J-pop?
2,286
October 2004
darkryu2
|
Post by ¿J-pop? on Jun 25, 2005 19:14:38 GMT -8
|
|
inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Jun 25, 2005 23:21:40 GMT -8
Good start, but for every <something>, you need to have a </something>. So where you have this:
<table border="1"> <tr> <th> <td> </tr> </table>
Those two tags aren't closed, and you can't use td inside th. Use one or the other, I recommend td.
<table border="1"> <tr> <td> PUT STUFF HERE </td> </tr> </table>
You can worry about making it a bit more complex later.
|
|