If you want to hide the Go blog sidebar ONLY on the blog homepage , here's some CSS
.all_go_posts #go_content{margin-left: 0}
.all_go_posts #go_content #go_content_pad{padding-left: 0}
.all_go_posts #go_sidebar{display: none;}
If you want to hide the Go blog sidebar completely, here's some CSS
#go_content{margin-left: 0}
#go_content #go_content_pad{padding-left: 0}
#go_sidebar{display: none;}
0 Comments