Zen Cart Logo
Forums / Addon Templates / Future Zen Template issue

Future Zen Template issue

Locked

Views: 1,668

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
10 Feb 2007, 2:51 AM
#1
prodesk avatar

prodesk

New Zenner

Join Date:
Dec 2006
Posts:
44
Plugin Contributions:
0

Future Zen Template issue

Can anyone familiar with teh future zen template take a look at www.thesensualspa.com and give me some idea what I did to kill the bottom frame of the side boxes...

I have been pulling my hair out for most of a day trying to figure out how the bottom of the side boxes was created...

the top and side frames are created with graphics supplied with the template, but the bottom doesn't appear to have a graphic associate with it and I can't find a graphic to do the job even with a fresh zownload of the original zip file...

I would greatly appreciate any comments from anyone familiar with this template who knows what the process is for creating these bottom frames...

Best Regards
Prodesk

10 Feb 2007, 3:37 AM
#2
kobra avatar

kobra

Black Belt

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

Re: Future Zen Template issue

You have this in the css:

.leftBoxContainer, .rightBoxContainer {
	background-image:url(../images/sidebox_content_bg.gif);
	background-repeat:repeat-y;
	margin-top: 1.5em
	}

.sideBoxContent {
	background-image:url(../images/sidebox_content_bg.gif);
	background-repeat:no-repeat;
	padding: 0.4em; background-position-y:50%
	}

I have ver 1.5 of the template and this in the css:

.leftBoxContainer, .rightBoxContainer {
	margin-top: 1.5em;
	}

.sideBoxContent {
	background-image:url(../images/sidebox_content_bg.gif);
	background-repeat:no-repeat;
	background-position:bottom;
	padding: 0.4em;
	}

For some reason yours is calling the image sidebox_content_bg.gif twice

10 Feb 2007, 5:30 AM
#3
prodesk avatar

prodesk

New Zenner

Join Date:
Dec 2006
Posts:
44
Plugin Contributions:
0

Re: Future Zen Template issue

Kobra,

That was it... Thanks much...