Column widths Posted by xia 19 Apr 2005 06:12 GMT-0000 posts: 14 Is there a way of controlling the column widths independently? I want the right column to be narrower than the left column.
Posted by Sridhar Katakam 19 Apr 2005 15:16 GMT-0000 posts: 78 /styles/ open your .css and edit the width value in following: Copy to clipboard#rightcolumn { width : 180px; padding : 0px; border-left : 1px solid #8CACBB; } > Is there a way of controlling the column widths independently? I want the right column to be narrower than the left column.
Posted by xia 23 Apr 2005 18:25 GMT-0000 posts: 14 that doesn't work because the widths of the boxes are set here.. Copy to clipboarddiv.box { background-color: white; margin: 4px; border: 1px solid #8CACBB; overflow: hidden; width: 190px; }
Posted by Gary Cunningham-Lee 26 Apr 2005 01:53 GMT-0000 posts: 4673 > that doesn't work because the widths of the boxes are set here.. > > Copy to clipboarddiv.box { > background-color: white; > margin: 4px; > border: 1px solid #8CACBB; > overflow: hidden; > width: 190px; > } > Change that width to 100%, along with any other pixel widths that may be in the div. box style. I did this with the moreneat theme, and changed the column widths to 200px and 150px, just to test, and got the result you want. -- Gary
Posted by Sridhar Katakam 26 Apr 2005 11:00 GMT-0000 posts: 78 also, there are these styles that might affect: TD#leftcolumn, TD#rightcolumn