Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Footer Background Image

Footer Background Image

Locked

Views: 1,336

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
12 Sep 2006, 6:28 AM
#1
pensive612 avatar

pensive612

Zen Follower

Join Date:
May 2006
Posts:
313
Plugin Contributions:
0

Footer Background Image

Hey everyone,

i'm trying to create a background image in the footer behind the 'Copyright Info' that would stretch across the entire MainWrapper

i've tried putting the image into CSS with the divs i can think of in there, but can't seem to get it to show up. and i've tried hard coding the image in the tpl_footer, although, I don't know for sure if i did it correctly.

any ideas what i might be missing?

thanks in advance.

adam.

12 Sep 2006, 8:01 AM
#2
sketchy avatar

sketchy

Totally Zenned

Join Date:
Aug 2006
Location:
Canada
Posts:
940
Plugin Contributions:
2

Re: Footer Background Image

No need to hack, when you can get the CSS to do the work.

example selector for the stylesheet;

#siteinfoLegal, .legalCopyright {
      text-align: left;
      line-height: 3.5em;
      background-image: url(../images/yourfooter.jpg);
      background-color: #ffffff;
      height: 38px;
      }

It's all about finding the selectors responsible for that area and assigning a declaration for a background image. :wink2:

12 Sep 2006, 7:01 PM
#3
pensive612 avatar

pensive612

Zen Follower

Join Date:
May 2006
Posts:
313
Plugin Contributions:
0

Re: Footer Background Image

Thanks Sketchy..!

I think I was on the right track, but I must have switched my '.' and '#' because I just couldn't seem to get it show up.

but it's there now...

thanks again.

adam.

12 Sep 2006, 11:09 PM
#4
sketchy avatar

sketchy

Totally Zenned

Join Date:
Aug 2006
Location:
Canada
Posts:
940
Plugin Contributions:
2

Re: Footer Background Image

You're welcome. I'm glad you got your image showing now. :D