Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / add image on left column

add image on left column

Locked

Views: 896

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
31 May 2008, 12:11 AM
#1
makenoiz avatar

makenoiz

Zen Follower

Join Date:
Mar 2006
Posts:
284
Plugin Contributions:
0

add image on left column

I want to add a simple gif to the left column. it will not rotate or do anything. What is the best way? Add it directly to the template?

thanks

31 May 2008, 1:14 AM
#2
get_em_fast avatar

get_em_fast

Totally Zenned

Join Date:
Dec 2006
Location:
Seligman, MO U.S.A.
Posts:
2,072
Plugin Contributions:
1

Re: add image on left column

If you're just wanting a background image, the best way to do that is with your stylesheet.css in includes/templates/YOUR_CUSTOM_TEMPLATE/css/stylesheet.css

Find this section of code (ALONE. If you don't have it by itself, then add it), and modify it to look like:

#navColumnOne {
    background-image: URL(../images/your_image.gif);
    }

Hope this helps.