January 28th, 2003, 11:03 PM
|
#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
|
| |
January 29th, 2003, 01:53 AM
|
#2 (permalink)
| | Go back to sleep
Join Date: Jul 2002 Location: Switzerland
Posts: 6,163
| 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 |
| |
January 29th, 2003, 02:11 AM
|
#3 (permalink)
| | ᅟᅠ
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> |
| |
January 29th, 2003, 02:13 AM
|
#4 (permalink)
| | Go back to sleep
Join Date: Jul 2002 Location: Switzerland
Posts: 6,163
| Quote: |
don't be silly creatures.
| oh ok thanks out
Creatures |
| |
January 29th, 2003, 05:29 AM
|
#5 (permalink)
| | Member
Join Date: Jan 2003 Location: England
Posts: 165
|
Stylesheets, very cool, thanks OutPatient  |
| |
January 30th, 2003, 06:42 PM
|
#6 (permalink)
| | Go back to sleep
Join Date: Jul 2002 Location: Switzerland
Posts: 6,163
|
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.
|
| |
January 30th, 2003, 06:45 PM
|
#7 (permalink)
| | ᅟᅠ
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. |
| |
January 30th, 2003, 06:46 PM
|
#8 (permalink)
| | Go back to sleep
Join Date: Jul 2002 Location: Switzerland
Posts: 6,163
|
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 |
| |
January 30th, 2003, 06:53 PM
|
#9 (permalink)
| | ᅟᅠ
Join Date: Oct 2001 Location: ɐqɟs
Posts: 10,449
|
td {text-align: center; vertical-align: top} |
| |
January 30th, 2003, 06:55 PM
|
#10 (permalink)
| | Go back to sleep
Join Date: Jul 2002 Location: Switzerland
Posts: 6,163
|
thanks buddy!
sorry late here and i wanted to finish this before sleeping!
Creatures |
| | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | | |
Posting Rules
| You may post new threads You may post replies You may not post attachments You may not edit your posts HTML code is Off | | | | Most Active Discussions | | | | | Recent Discussions  | | | | | |