Hi Mike,
The css to move the sidebar to the left is as follows:
| Code: |
#sidebar {
float: left;
width: 220px;
padding-top: 0px;
padding-right: 10px;
padding-bottom: 20px;
padding-left:5px;
clear:right
}
|
Just change the float:right; to float:left; that should do the trick.
You will also need to flip the bg image around also so that the colour is left aligned rather than right aligned.
The css to add an image in the user4 position is below. Just change the image name with your image name and upload to the shopfront/images folder.
| Code: |
#cart {
padding-top:40px;
float:right;
color:#fff;
height:79px;
background: url(../images/my_cart_image.jpg) left center no-repeat;
width:200px;
}
|
Hope this helps.
Anthony.