Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / bottom align text over background image

bottom align text over background image

Locked

Views: 4,260

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
19 Sep 2006, 8:44 PM
#1
pensive612 avatar

pensive612

Zen Follower

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

bottom align text over background image

I have a background image in my footer. and want to align the footer text to the bottom-right of the image.

I can move the text, but the image always seems to go along with it.

and i can move only the link. adding the 'a' into my separate css tag. but not the rest of the text.

can anyone let me know what i'm missing?

these is my code:

 .legalCopyright {
      text-align: left;
      background-image: url(../images/footer.jpg);
	  background-repeat:no-repeat;
      background-color: #ffffff;
      height: 47px;
      }	

thanks in advance.

20 Sep 2006, 7:32 AM
#2
kobra avatar

kobra

Black Belt

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

Re: bottom align text over background image

You can try adding

background-position:  center; 
``` to attempt to keep the background centered and then right align the text.
20 Sep 2006, 7:45 AM
#3
pensive612 avatar

pensive612

Zen Follower

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

Re: bottom align text over background image

thanks kobra...

that's pretty much exactly what i ended up doing.

thanks again.