View Full Version : Can not change width of table cells...


twistabomb
07-13-2003, 08:14 PM
8pt arial

I am having trouble setting the widths of my table cells/columns. Apparently, no matter what width I set, they remain at what looks to be 50 percent each. I've tried using pixels and relative values for the width but nothing works! lol. You can view the site where the problem is occuring here (http://www.angelfire.com/blog/unrestricted/indexx.html)

Please note, that I have defined some rules in css coding for the page which can be seen below:

/*BACKGROUND*/

A:link
{ text-decoration:none; color:#9BD400; font-weight:bold; }
A:visited
{ text-decoration: none; color:#9BD400; font-weight:bold;}

A:hover
{ text-decoration: none; cursor:se-resize; color:#808080; font-size:10pt;
letter-spacing:2px;}

body
{background-color: #FFFFFF;
font-family: arial;
color: #000000 ;
font-weight: lighter;
font-size: 8 pt;
line-spacing: 15px;
margin-left: 2px;

scrollbar-face-color : #FFFFFF;
scrollbar-highlight-color : #FFFFFF;
scrollbar-3dlight-color : #FFFFFF; scrollbar-shadow-color : #FFFFFF;
scrollbar-darkshadow-color : #FFFFFF; scrollbar-track-color : #FFFFFF;
scrollbar-arrow-color : #ACE3FF; }


td
{font-family: arial;
color: black ;
font-weight: normal;
font-size: 8 pt;}






table {width: 600; align: center; }
table table {border: 1px #000000 solid; width: 100%;}
table table table { width: 100%; border: 1px #000000 dotted; }




p, div
{font-family: arial;
color: black ;
font-weight: normal;
font-size: 8 pt;
align: left;}






input, textarea {color:BLACK; font-size:8PT;
letter-spacing:1PT; font-family:arial; background:clear; border:1PT inset BLACK;}



H1

{ FONT-FAMILY: ARIAL;

COLOR: #647070;

letter-spacing: 3pt;

line-spacing: 5pt;

font-size: 9pt}

Alcy
07-13-2003, 09:08 PM
<!--THIS IS THE LEFT IMAGE-->
<td width="50%" colspan="1">
<img src="/blog/unrestricted/blue/v1.jpg" border="0"></img>
</td>
<!--LEFT IMAGE CODES END-->



<!--THIS IS THE IFRAME-->
<td width="50%" colspan="1">
<iframe src="/blog/unrestricted/welcome.html" width="300" height="400" frameborder="0" scrolling="yes" border="0" name="menu"></iframe>
</td>
<!--IFRAME CODE ENDS-->

^ Have you tried adjusting those percentages?

twistabomb
07-13-2003, 09:30 PM
Yea, I tried changing that just now when you suggested it. And my whole table got stretched out past 600 pixels, and then whatever width I set those two columns, the rest of the table portions that had more than one column matched up to that one.