Page 1 of 1

How to resize middle column?

Posted: Sat Oct 16, 2010 2:21 am
by IOWA
I want to completely disable the left column, (did already) and have the middle column take the space of the left column. How can I do this?

Re: How to resize middle column?

Posted: Sat Oct 16, 2010 5:52 am
by IOWA
Ok I figured this one out. For those who need this in the future, in the stylesheet.php of your current theme, simply go to:

Code: Select all

}
#column_left {
	float: left;
	[b]width: 0px;[/b]
	margin-right: 10px;
	clear: left;
}
#column_right {
	float: right;
	width: 180px;
	margin-left: 10px;
	clear: right;
}
#content {
	[b]margin-left: 0px;[/b]
	margin-right: 190px;
	margin-bottom: 10px;

and make the changes indicated in the bold

Re: How to resize middle column?

Posted: Tue Oct 19, 2010 1:17 am
by m3talhead
Thanx, i was looking for this!

Re: How to resize middle column?

Posted: Tue Oct 19, 2010 1:17 am
by m3talhead
Thanx, i was looking for this!

Re: How to resize middle column?

Posted: Thu Oct 21, 2010 2:52 am
by IOWA
No problem!