Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Adding an image to left column???

Adding an image to left column???

Locked

Views: 3,391

Results 1 to 8 of 8
This thread is locked. New replies are disabled.
16 Sep 2007, 2:50 AM
#1
mcanes avatar

mcanes

Zen Follower

Join Date:
May 2007
Posts:
210
Plugin Contributions:
0

Adding an image to left column???

What file would I need to update to add an image to my left column that I do not want in a side box. For instance I want a UPS Shipping image in the left column below my categories side box...

Thanks in advance.

16 Sep 2007, 5:43 AM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Adding an image to left column???

You can add it to the "Blank Sidebox" add on module an just remove the box header and border

16 Sep 2007, 8:50 PM
#3
mcanes avatar

mcanes

Zen Follower

Join Date:
May 2007
Posts:
210
Plugin Contributions:
0

Re: Adding an image to left column???

I hate to sounds stupid, but which file would I do that in???

17 Sep 2007, 10:26 AM
#4
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Adding an image to left column???

In the download/sidebox section on this site there is a "blank sidebox" module with instructions.

Get your image in the box first then you can use the stylesheet to remove/hide the border and header

17 Sep 2007, 11:02 AM
#5
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Adding an image to left column???

Also possible to add via stylesheet
i.e.

#navColumnOneWrapper, #navColumnTwoWrapper {
padding-bottom:86px;
background: url(../images/bottom_column2.jpg) bottom center no-repeat;
} 

Alter padding, images to suit

6 Oct 2007, 11:26 PM
#6
robinstl avatar

robinstl

Zen Follower

Join Date:
Aug 2007
Location:
St. Louis
Posts:
111
Plugin Contributions:
0

Re: Adding an image to left column???

This .css works perfectly but what if you wanted to add 3-4 other pictures aligned vertically underneath each other?

7 Oct 2007, 4:50 AM
#7
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Adding an image to left column???

robinstl:

This .css works perfectly but what if you wanted to add 3-4 other pictures aligned vertically underneath each other?
Repeat css code for each image, alter padding for each,
or make 1 single image from the 3 or 4 images required..
again, alter padding.
:smile:

8 Oct 2007, 4:17 AM
#8
robinstl avatar

robinstl

Zen Follower

Join Date:
Aug 2007
Location:
St. Louis
Posts:
111
Plugin Contributions:
0

Re: Adding an image to left column???

misty:

Repeat css code for each image, alter padding for each,
or make 1 single image from the 3 or 4 images required..
again, alter padding.
:smile:

Thank you very much, very handy.