The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Table code (like the code from the homepage here)

3 posters

Go down

Table code (like the code from the homepage here) Empty Table code (like the code from the homepage here)

Post by Guest April 10th 2007, 10:09 pm

Does anyone have a code such as this that I can use please.
avatar
Guest
Guest


Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Cornelia April 11th 2007, 7:40 am

Hello.

uh... Could you explain more please ? We need more details, so we can help you better.
Cornelia
Cornelia
Hyperactive

Female Posts : 4763
Reputation : 173
Language : I'M NOT A TECHIE OR A MOD, SO QUIT SENDING ME PMS FOR TECHIE STUFF OR LOST PASSWORDS !!!
Location : Absent on weekends until camping season ends

http://ishimaru-design.servhome.org

Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Guest April 11th 2007, 2:40 pm

Oh, so sorry.

Well the homepage is gone here now.

There was a table just below the navagation bar that had the editboard team link, link to the FAQ etc. It was in two collums. It also told you to be sure to activate your account.

Example ( I dont want the asterisks)

I want a collum here*************Collum here
this collum continues*************Two neat collums
here*************************That will separate
here*************************With space rather
here*************************than asterisks
here*************************Thanks
avatar
Guest
Guest


Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Guest April 12th 2007, 12:59 am

Deleted post

Sorry
avatar
Guest
Guest


Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Guest April 16th 2007, 1:34 am

anyone
avatar
Guest
Guest


Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Cornelia April 16th 2007, 6:38 am

Sorry, but I didn't answer because of this :

Kilsek wrote:Deleted post

Sorry

It confused me...


You want how many columns and how many rows ?
Cornelia
Cornelia
Hyperactive

Female Posts : 4763
Reputation : 173
Language : I'M NOT A TECHIE OR A MOD, SO QUIT SENDING ME PMS FOR TECHIE STUFF OR LOST PASSWORDS !!!
Location : Absent on weekends until camping season ends

http://ishimaru-design.servhome.org

Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Guest April 17th 2007, 1:45 am

two colums and the rows will be added to in the future. What I want to do is out links in one collum and a description of a hobby/craft in the other
avatar
Guest
Guest


Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Cornelia April 17th 2007, 1:52 am

The code for a two-column table is like this :

Code:
<table>
  <tr>
      <td>text</td>
      <td>text</td>
  </tr>
{ADD_YOUR ROWS}
</table>

For each row, you add this :

Code:
<tr>
  <td>Text</td>
  <td>Text</td>
</tr>

And after, if you want to change its appearance (border, padding, etc.), I haven't made a tutorial in English yet, but you can look at this link to learn how to make tables : http://www.nuthinbutnet.net/html/tables.aspx
Cornelia
Cornelia
Hyperactive

Female Posts : 4763
Reputation : 173
Language : I'M NOT A TECHIE OR A MOD, SO QUIT SENDING ME PMS FOR TECHIE STUFF OR LOST PASSWORDS !!!
Location : Absent on weekends until camping season ends

http://ishimaru-design.servhome.org

Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Guest April 17th 2007, 4:42 pm

By row you mean going accross?

Seems like alot of work for colums.

Thanks though, I will try it.
avatar
Guest
Guest


Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Cornelia April 17th 2007, 4:50 pm

A row, is like a column, but horizontal...

the "tr" in the <tr> tag means "table row".
Cornelia
Cornelia
Hyperactive

Female Posts : 4763
Reputation : 173
Language : I'M NOT A TECHIE OR A MOD, SO QUIT SENDING ME PMS FOR TECHIE STUFF OR LOST PASSWORDS !!!
Location : Absent on weekends until camping season ends

http://ishimaru-design.servhome.org

Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Guest April 17th 2007, 5:02 pm

No, it is nothing what I wanted, there is no space inbetween the colums.

Link to what I am trying to do: http://geekedondungeonsanddragons.com/3D-Maps-By-RedSkullz-h7.html

I want links on the left side and the description of work to be further away from links

EDIT: never mind I found the code I needed.

Thanks
avatar
Guest
Guest


Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Shnitzel April 17th 2007, 6:50 pm

Kilsek wrote:No, it is nothing what I wanted, there is no space inbetween the colums.

Link to what I am trying to do: http://geekedondungeonsanddragons.com/3D-Maps-By-RedSkullz-h7.html

I want links on the left side and the description of work to be further away from links

EDIT: never mind I found the code I needed.

Thanks
What's the code?
Shnitzel
Shnitzel
Forumember

Male Posts : 101
Reputation : 0
Language : English
Location : My room...

http://www.taxfree.iowoi.org

Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Guest April 17th 2007, 6:51 pm

i did my on microsoft word then did a screenshot of it paste it on paint and upload it to photobucket.com
avatar
Guest
Guest


Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Caihlem April 17th 2007, 7:51 pm

Katt wrote:The code for a two-column table is like this :

Code:
<table>
  <tr>
      <td>text</td>
      <td>text</td>
  </tr>
{ADD_YOUR ROWS}
</table>

For each row, you add this :

Code:
<tr>
  <td>Text</td>
  <td>Text</td>
</tr>
A row is marked by the <tr></tr>, each column is marked in the <td></td>

ex:
<td></td>
<td></td>=> 2 columns

<td></td>
<td></td>
<td></td> => 3 columns
Caihlem
Caihlem
Energetic

Male Posts : 8969
Reputation : 342
Language : English, French & Female
Location : You can't fly like the phenix

Back to top Go down

Table code (like the code from the homepage here) Empty Re: Table code (like the code from the homepage here)

Post by Guest April 18th 2007, 11:26 am

a few questions for my gallery

1, how many html pages can you make?

could i make over 50 page ?
avatar
Guest
Guest


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum