Well here's my problem.
www.myspace.com/peanutsami
I like to do my own layout thingy but the problem is my inexperience with CSS and HTML. I have some knowledge but not a whole lot and can't really improvise. I wish to put the "About Me" section in table and when i do the <table> code it doesn't work.
Lastly, what effect does multiple table, table, table CSS codes have?
Page 1 of 1
Coding Help (myspace Related) Yea i know i'm a lil kid T__T
#2
Posted 06 April 2007 - 02:59 PM
Im not that good with myspace and don't mess with it much. But this is the default for a website.
<table border="2" cellpadding="0" cellspacing="0"> <tr> <td>ALL YOUR ABOUT ME SECTION HERE.</td> </tr> </table> </center> </div>
#5
Posted 07 April 2007 - 04:21 PM
TelMeDragon said:
Lastly, what effect does multiple table, table, table CSS codes have?
Do you mean something like this?:
TABLE TABLE TABLE {
padding:5px;
}Technically that code would make any table within a table within a table on a page have 5 pixels of padding. Although, I can't say I've ever used that. I have seen it with lists a lot, such as LI LI.
#6
Posted 08 April 2007 - 02:07 AM
Lemme get it straight, each table line is a a different layer of a table?
#7
Posted 08 April 2007 - 07:29 AM
I'm not sure what you mean by "layer" and I don't want to mislead you so I'll try explaining it another way.
TABLE TABLE TABLE would apply when a table is inside of a table which is inside of another table.
For example, a regular old code for a table would look like this:
The CSS element "TABLE TABLE TABLE" would not apply to that; however, it would apply to this:
I hope that helps.
TABLE TABLE TABLE would apply when a table is inside of a table which is inside of another table.
For example, a regular old code for a table would look like this:
<TABLE> <TR> <TD> Text inside table. </TD> </TR> </TABLE>
The CSS element "TABLE TABLE TABLE" would not apply to that; however, it would apply to this:
<TABLE> <TR> <TD>Text inside first table. <TABLE> <TR> <TD>Text inside second table, which is in the first table. <TABLE> <TR> <TD>Text inside third table, which is within the second table. This is where the TABLE TABLE TABLE element would be applied. </TD> </TR> </TABLE> </TD> </TR> </TABLE> </TD> </TR> </TABLE>
I hope that helps.
Share this topic:
Page 1 of 1

Help



Back to top









