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.
- Go to your themes folder
- Choose your theme and open on your favorite text editor, global.css file example: customprestashoptemplates.com/themes/prestashop/css/global.css
- Locate the following code :
- 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;
}
#left_column {Thats it, now you can change your prestashop left column background color.
clear: left;
width: 215px;
margin-right: 21px;
overflow: hidden;
background:#565656; <- you can change the color
}