How to Change Left Column Background Color in Prestashop 1.4

How To change left column background color

As we all know that old prestashop version default template was a 3 column theme. We can devide the it into left column, center column, and the last one is right column.

Now, i will show you how to change left column background color.
  1. Go to your themes folder
  2. Choose your theme and open on your favorite text editor, global.css file 
  3. example: customprestashoptemplates.com/themes/prestashop/css/global.css
  4. Locate the following code :
  5. #left_column {
    clear: left;
    width: 215px;
    margin-right: 21px;
    overflow: hidden;
    }
  6. add a new syntax to above css code, so it will look like below css code:
#left_column {
clear: left;
width: 215px;
margin-right: 21px;
overflow: hidden;
background:#565656; <- you can change the color
}
Thats it, now you can change your prestashop left column background color.