I took her code to remove the right column:
<style type="text/css">
.main-inner .columns {padding-right: 0;}
.main-inner .fauxcolumn-center-outer {right: 0;
_width: expression(this.parentNode.offsetWidth -
parseInt("$(main.column.left.width)") + 'px');}
.main-inner .fauxcolumn-right-outer {width: 0px;}
.main-inner .column-right-outer {width: 0px; margin-right: 0;
display: none;}
</style>
and edited it to remove the left column:
<style type=”text/css”>
.main-inner .columns {padding-left: 0;}
.main-inner .fauxcolumn-center-outer {left: 0;
_width: expression(this.parentNode.offsetWidth –
parseInt(“$(main.column.right.width)”) + ‘px’);}
.main-inner .fauxcolumn-left-outer {width: 0px;}
.main-inner .column-left-outer {width: 0px; margin-left: 0;
display: none;}
</style>
To remove both columns:
<style type=”text/css”>
.main-inner .columns {padding-right: 0;}
.main-inner .fauxcolumn-center-outer {right: 0;
_width: expression(this.parentNode.offsetWidth –
parseInt(“$(main.column.left.width)”) + ‘px’);}
.main-inner .fauxcolumn-right-outer {width: 0px;}
.main-inner .column-right-outer {width: 0px; margin-right: 0;
display: none;}
</style>
<style type=”text/css”>
.main-inner .columns {padding-left: 0;}
.main-inner .fauxcolumn-center-outer {left: 0;
_width: expression(this.parentNode.offsetWidth –
parseInt(“$(main.column.right.width)”) + ‘px’);}
.main-inner .fauxcolumn-left-outer {width: 0px;}
.main-inner .column-left-outer {width: 0px; margin-left: 0;
display: none;}
</style>
To remove the columns without Editing the HTML Template:
Log into Blogger –> Dashboard –> Posting –> Edit Pages –> Edit HTML –> Paste the appropriate code to hide the column or columns you want –> Compose –> Type whatever you want –> Publish Page
I hope this helps I know I was ecstatic when I had this epiphany this morning.
UPDATED 5/23/11:
THIS CODE DOES WORK AND IT WORKS WELL BUT I DID NEED TO RE-ADD IT TO ALL MY PAGES AFTER BLOGGERS OUTAGE A COUPLE WEEKS AGO.