BleepingComputer.com: Coding Help (myspace Related)

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Coding Help (myspace Related) Yea i know i'm a lil kid T__T

#1 User is offline   TelMeDragon 

  • Member
  • PipPip
  • Find Topics
  • Group: Members
  • Posts: 80
  • Joined: 10-January 07

Posted 06 April 2007 - 01:40 PM

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?
Posted Image

#2 User is offline   Matthew Alan 

  • Member
  • PipPip
  • Find Topics
  • Group: Members
  • Posts: 105
  • Joined: 19-February 07
  • Gender:Male
  • Location:Tennessee

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>


#3 User is offline   TelMeDragon 

  • Member
  • PipPip
  • Find Topics
  • Group: Members
  • Posts: 80
  • Joined: 10-January 07

Posted 06 April 2007 - 06:25 PM

Wow it worked, xD i feel retarded
Posted Image

#4 User is offline   Matthew Alan 

  • Member
  • PipPip
  • Find Topics
  • Group: Members
  • Posts: 105
  • Joined: 19-February 07
  • Gender:Male
  • Location:Tennessee

Posted 07 April 2007 - 12:09 AM

Glad it worked.

#5 User is offline   Brain of J 

  • New Member
  • Pip
  • Find Topics
  • Group: Members
  • Posts: 14
  • Joined: 07-April 07
  • Location:Florida

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 User is offline   TelMeDragon 

  • Member
  • PipPip
  • Find Topics
  • Group: Members
  • Posts: 80
  • Joined: 10-January 07

Posted 08 April 2007 - 02:07 AM

Lemme get it straight, each table line is a a different layer of a table?
Posted Image

#7 User is offline   Brain of J 

  • New Member
  • Pip
  • Find Topics
  • Group: Members
  • Posts: 14
  • Joined: 07-April 07
  • Location:Florida

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:

<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
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users