home hardware prices news articles forums photos user reviews
Go Back   Tech Support Forums - TechIMO.com > PC Hardware and Tech > Webmastering and Programming
Join TechIMO for Free!
Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read
Reply Get bargains at  »  Dealighted.com
 
Thread Tools
Currently Active Users: 2672
Discussions: 188,384, Posts: 2,243,493, Members: 232,612
Old January 28th, 2003, 11:03 PM   Digg it!   #1 (permalink)
Member
 
Join Date: Jan 2003
Location: England
Posts: 165
Argh! Stupid HTML Table problems... AGAIN!

I cant find out how to center the contents of all the cells... if i put ALIGN=CENTER into the table tag it doesnt work... but when i put it into the table row tag it does what i want but only in that row...

do i really have to add align=center into every table row tag?

this is my code (ive probably done this really wrong, oh well )

Code:
<HTML>

<HEAD>
<TITLE>SimCity 4 -- NIMBY/YIMBY Table</TITLE>
</HEAD>

<BODY>
<H1>NIMBY/YIMBY Table</H1>
<H2>Recreational Parks</H2>
<TABLE>
 <TR>
  <TD><B>Building</B></TD>
  <TD><B>Cost</B></TD>
  <TD><B>Maintainence</B></TD>
  <TD><B>Commercial<BR>Effect</B></TD>
  <TD><B>Commercial<BR>Radius</B></TD>
  <TD><B>Residential<BR>Effect</B></TD>
  <TD><B>Residential<BR>Radius</B></TD>
 </TR>
 <TR>
  <TD>Open Paved Area</TD>
  <TD>40</TD>
  <TD>5</TD>
  <TD BGCOLOR=#94A3FC>30</TD>
  <TD BGCOLOR=#94A3FC>10</TD>
  <TD BGCOLOR=#C7FDD0>10</TD>
  <TD BGCOLOR=#C7FDD0>10</TD>
 </TR>
 <TR>
  <TD>Open Grass Area</TD>
  <TD>40</TD>
  <TD>5</TD>
  <TD BGCOLOR=#94A3FC>20</TD>
  <TD BGCOLOR=#94A3FC>10</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
  <TD BGCOLOR=#C7FDD0>15</TD>
 </TR>
 <TR>
  <TD>Small Park Green</TD>
  <TD>40</TD>
  <TD>5</TD>
  <TD BGCOLOR=#94A3FC>30</TD>
  <TD BGCOLOR=#94A3FC>15</TD>
  <TD BGCOLOR=#C7FDD0>50</TD>
  <TD BGCOLOR=#C7FDD0>15</TD>
 </TR>
 <TR>
  <TD>Community Garden</TD>
  <TD>70</TD>
  <TD>5</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#C7FDD0>40</TD>
  <TD BGCOLOR=#C7FDD0>35</TD>
 </TR>
 <TR>
  <TD>Beach</TD>
  <TD>70</TD>
  <TD>5</TD>
  <TD BGCOLOR=#94A3FC>50</TD>
  <TD BGCOLOR=#94A3FC>10</TD>
  <TD BGCOLOR=#C7FDD0>80</TD>
  <TD BGCOLOR=#C7FDD0>10</TD>
 </TR>
 <TR>
  <TD>Small Flower Garden</TD>
  <TD>80</TD>
  <TD>5</TD>
  <TD BGCOLOR=#94A3FC>20</TD>
  <TD BGCOLOR=#94A3FC>10</TD>
  <TD BGCOLOR=#C7FDD0>60</TD>
  <TD BGCOLOR=#C7FDD0>15</TD>
 </TR>
 <TR>
  <TD>Basketball Court</TD>
  <TD>90</TD>
  <TD>10</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
 </TR>
 <TR>
  <TD>Playground</TD>
  <TD>90</TD>
  <TD>10</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#C7FDD0>60</TD>
  <TD BGCOLOR=#C7FDD0>15</TD>
 </TR>
 <TR>
  <TD>Gazebo</TD>
  <TD>90</TD>
  <TD>10</TD>
  <TD BGCOLOR=#94A3FC>20</TD>
  <TD BGCOLOR=#94A3FC>10</TD>
  <TD BGCOLOR=#C7FDD0>40</TD>
  <TD BGCOLOR=#C7FDD0>40</TD>
 </TR>
 <TR>
  <TD>Ranger Station</TD>
  <TD>90</TD>
  <TD>10</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#C7FDD0>20</TD>
  <TD BGCOLOR=#C7FDD0>80</TD>
 </TR>
 <TR>
  <TD>Small Plaza</TD>
  <TD>90</TD>
  <TD>10</TD>
  <TD BGCOLOR=#94A3FC>50</TD>
  <TD BGCOLOR=#94A3FC>15</TD>
  <TD BGCOLOR=#C7FDD0>25</TD>
  <TD BGCOLOR=#C7FDD0>15</TD>
 </TR>
 <TR>
  <TD>Tennis Court</TD>
  <TD>130</TD>
  <TD>15</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
 </TR>
 <TR>
  <TD>Medium Park Green</TD>
  <TD>160</TD>
  <TD>15</TD>
  <TD BGCOLOR=#94A3FC>20</TD>
  <TD BGCOLOR=#94A3FC>15</TD>
  <TD BGCOLOR=#C7FDD0>60</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
 </TR>
 <TR>
  <TD>Medium Flower Garden</TD>
  <TD>170</TD>
  <TD>20</TD>
  <TD BGCOLOR=#94A3FC>20</TD>
  <TD BGCOLOR=#94A3FC>10</TD>
  <TD BGCOLOR=#C7FDD0>70</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
 </TR>
 <TR>
  <TD>Medium Playground</TD>
  <TD>210</TD>
  <TD>25</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#C7FDD0>75</TD>
  <TD BGCOLOR=#C7FDD0>25</TD>
 </TR>
 <TR>
  <TD>Skateboard Park</TD>
  <TD>210</TD>
  <TD>25</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#94A3FC>-</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
  <TD BGCOLOR=#C7FDD0>60</TD>
 </TR>
 <TR>
  <TD>Medium Plaza</TD>
  <TD>210</TD>
  <TD>25</TD>
  <TD BGCOLOR=#94A3FC>60</TD>
  <TD BGCOLOR=#94A3FC>15</TD>
  <TD BGCOLOR=#C7FDD0>25</TD>
  <TD BGCOLOR=#C7FDD0>25</TD>
 </TR>
 <TR>
  <TD>Large Flower Garden</TD>
  <TD>310</TD>
  <TD>35</TD>
  <TD BGCOLOR=#94A3FC>35</TD>
  <TD BGCOLOR=#94A3FC>10</TD>
  <TD BGCOLOR=#C7FDD0>85</TD>
  <TD BGCOLOR=#C7FDD0>45</TD>
 </TR>
 <TR>
  <TD>Large Park Green</TD>
  <TD>320</TD>
  <TD>25</TD>
  <TD BGCOLOR=#94A3FC>35</TD>
  <TD BGCOLOR=#94A3FC>15</TD>
  <TD BGCOLOR=#C7FDD0>75</TD>
  <TD BGCOLOR=#C7FDD0>45</TD>
 </TR>
 <TR>
  <TD>Soccer Field</TD>
  <TD>340</TD>
  <TD>35</TD>
  <TD BGCOLOR=#94A3FC>20</TD>
  <TD BGCOLOR=#94A3FC>5</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
  <TD BGCOLOR=#C7FDD0>50</TD>
 </TR>
 <TR>
  <TD>Softball Field</TD>
  <TD>400</TD>
  <TD>35</TD>
  <TD BGCOLOR=#94A3FC>20</TD>
  <TD BGCOLOR=#94A3FC>5</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
  <TD BGCOLOR=#C7FDD0>50</TD>
 </TR>
 <TR>
  <TD>Large Plaza</TD>
  <TD>400</TD>
  <TD>35</TD>
  <TD BGCOLOR=#94A3FC>80</TD>
  <TD BGCOLOR=#94A3FC>15</TD>
  <TD BGCOLOR=#C7FDD0>35</TD>
  <TD BGCOLOR=#C7FDD0>30</TD>
 </TR>
 <TR>
  <TD>Farmer's Market</TD>
  <TD>4,900</TD>
  <TD>30</TD>
  <TD BGCOLOR=#94A3FC>50</TD>
  <TD BGCOLOR=#94A3FC>22</TD>
  <TD BGCOLOR=#C7FDD0>75</TD>
  <TD BGCOLOR=#C7FDD0>27</TD>
 </TR>
 <TR>
  <TD>Minor League Stadium</TD>
  <TD>17,000</TD>
  <TD>120</TD>
  <TD BGCOLOR=#94A3FC>50</TD>
  <TD BGCOLOR=#94A3FC>22</TD>
  <TD BGCOLOR=#C7FDD0>-20</TD>
  <TD BGCOLOR=#C7FDD0>16</TD>
 </TR>
 <TR>
  <TD>Opera House</TD>
  <TD>28,000</TD>
  <TD>200</TD>
  <TD BGCOLOR=#94A3FC>50</TD>
  <TD BGCOLOR=#94A3FC>22</TD>
  <TD BGCOLOR=#C7FDD0>-</TD>
  <TD BGCOLOR=#C7FDD0>-</TD>
 </TR>
 <TR>
  <TD>Tourist Trap</TD>
  <TD>10,000</TD>
  <TD>210</TD>
  <TD BGCOLOR=#94A3FC>50</TD>
  <TD BGCOLOR=#94A3FC>36</TD>
  <TD BGCOLOR=#C7FDD0>-25</TD>
  <TD BGCOLOR=#C7FDD0>17</TD>
 </TR>
 <TR>
  <TD>City Zoo</TD>
  <TD>37,000</TD>
  <TD>260</TD>
  <TD BGCOLOR=#94A3FC>50</TD>
  <TD BGCOLOR=#94A3FC>14</TD>
  <TD BGCOLOR=#C7FDD0>25</TD>
  <TD BGCOLOR=#C7FDD0>17</TD>
 </TR>
 <TR>
  <TD>Major League Stadium</TD>
  <TD>48,000</TD>
  <TD>340</TD>
  <TD BGCOLOR=#94A3FC>75</TD>
  <TD BGCOLOR=#94A3FC>27</TD>
  <TD BGCOLOR=#C7FDD0>-50</TD>
  <TD BGCOLOR=#C7FDD0>20</TD>
 </TR>
</TABLE>

</BODY>

</HTML>
Please Help!

Cheers.

~Fade2Grey
__________________
~Fade2Grey

Fade2Grey is offline   Reply With Quote
Old January 29th, 2003, 01:53 AM     #2 (permalink)
Go back to sleep
 
Creatures's Avatar
 
Join Date: Jul 2002
Location: Switzerland
Posts: 6,163
Send a message via ICQ to Creatures
Quote:
do i really have to add align=center into every table row tag?
i'm not sure but i think! yes!

just use notepad (replace function)

<td to <td align="left"

that's it

Creatures
__________________
Canon EOS 450D | Canon EF-S 18-55mm 1:3.5-5.6 IS | Canon EF-S 55-250mm 1:4-5.6 IS | Canon Speedlite 430EX II

Creatures is online now   Reply With Quote
Old January 29th, 2003, 02:11 AM     #3 (permalink)
ᅟᅠ
 
OuTpaTienT's Avatar
 
Join Date: Oct 2001
Location: ɐqɟs
Posts: 10,449
Don't be silly creatures.

This is all you got to do. Add this inside the <head> portion of your code:



<style type="text/css">
tr {text-align: center}
</style>
__________________
OIC 0utpatient.com

OuTpaTienT is offline   Reply With Quote
Old January 29th, 2003, 02:13 AM     #4 (permalink)
Go back to sleep
 
Creatures's Avatar
 
Join Date: Jul 2002
Location: Switzerland
Posts: 6,163
Send a message via ICQ to Creatures
Quote:
don't be silly creatures.
oh ok thanks out

Creatures
Creatures is online now   Reply With Quote
Old January 29th, 2003, 05:29 AM     #5 (permalink)
Member
 
Join Date: Jan 2003
Location: England
Posts: 165
Stylesheets, very cool, thanks OutPatient
Fade2Grey is offline   Reply With Quote
Old January 30th, 2003, 06:42 PM     #6 (permalink)
Go back to sleep
 
Creatures's Avatar
 
Join Date: Jul 2002
Location: Switzerland
Posts: 6,163
Send a message via ICQ to Creatures
ok out first i had to change tr into th to get it work and the second thing is how to put "top" in it too?

just "left,top" ??

here

Creatures

Last edited by Creatures : January 30th, 2003 at 06:56 PM.
Creatures is online now   Reply With Quote
Old January 30th, 2003, 06:45 PM     #7 (permalink)
ᅟᅠ
 
OuTpaTienT's Avatar
 
Join Date: Oct 2001
Location: ɐqɟs
Posts: 10,449
Come on Creatures. Your English isn't that bad. Explain yourself. I have no idea what the hell you're talking about or how that link is signifigant in any way.
OuTpaTienT is offline   Reply With Quote
Old January 30th, 2003, 06:46 PM     #8 (permalink)
Go back to sleep
 
Creatures's Avatar
 
Join Date: Jul 2002
Location: Switzerland
Posts: 6,163
Send a message via ICQ to Creatures
lol ok i want that the text in the tables are at the top of it! and not just at the left or right side!

the link is a table i made and that shows the problem!

Creatures
Creatures is online now   Reply With Quote
Old January 30th, 2003, 06:53 PM     #9 (permalink)
ᅟᅠ
 
OuTpaTienT's Avatar
 
Join Date: Oct 2001
Location: ɐqɟs
Posts: 10,449
td {text-align: center; vertical-align: top}
OuTpaTienT is offline   Reply With Quote
Old January 30th, 2003, 06:55 PM     #10 (permalink)
Go back to sleep
 
Creatures's Avatar
 
Join Date: Jul 2002
Location: Switzerland
Posts: 6,163
Send a message via ICQ to Creatures
thanks buddy!

sorry late here and i wanted to finish this before sleeping!

Creatures
Creatures is online now   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may post new threads
You may post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off

Most Active Discussions
Is It Just Me? (2892)
The United States Debt (20)
3-days in and no threads about Gaza (160)
I think I just killed my computer w.. (24)
Upgrading RAM (5)
hp compaq nc6000 problems (138)
Folderchat Weekday thread (441)
Antec 300 bulk purchase? (11)
Worth the upgrade?? (15)
Recent Discussions
Building a gaming computer advi.. (3)
Worth the upgrade?? (15)
Folderchat Weekday thread (441)
ADVICE (0)
How to increase my ram? (5)
Help with an Ati Radeon HD 4850.. (27)
CPU wont boot (4)
2nd video card (1)
special characters in quarkxpre.. (3)
Blackberry Storm, Gears of War .. (1)
Core 2 Quad Q9550 system (3)
COWBOOM Ripoff! Used Laptop w/$.. (4)


All times are GMT -4. The time now is 09:44 PM.
TechIMO Copyright 2008 All Enthusiast, Inc.



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28