Start by reading the forum rules re: posting code. Then see the Codex on Theme Development
Also, posting a link to your site and what theme you are using will help people help you.
I want to delete the left column (sidebar)
site wide?
start with finding and removing all calls for the left sidebar from the theme’s template files – http://codex.ww.wp.xz.cn/Function_Reference/get_sidebar
ps:
then edit style.css and change the left margin in here to zero:
#content {
margin: 0 268px 0px 275px;
padding: 3px 25px 20px 15px;
}
using a tool such as Firebug http://getfirebug.com/ might help to investigate what other styles to edit.