Help - Search - Members - Calendar
Full Version: Coding Help (myspace Related)
BleepingComputer.com > Internet & Networking > Web Site Development
   
TelMeDragon
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?
Matthew Alan
Im not that good with myspace and don't mess with it much. But this is the default for a website.
CODE
  <table border="2" cellpadding="0" cellspacing="0">
    <tr>
      <td>ALL YOUR ABOUT ME SECTION HERE.</td>
    </tr>
  </table>
  </center>
</div>
TelMeDragon
Wow it worked, xD i feel retarded
Matthew Alan
Glad it worked.
Brain of J
QUOTE(TelMeDragon)
Lastly, what effect does multiple table, table, table CSS codes have?


Do you mean something like this?:

CODE
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.
TelMeDragon
Lemme get it straight, each table line is a a different layer of a table?
Brain of J
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:

CODE
<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:

CODE
<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.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.