Zen Cart Logo
Forums / Addon Templates / Cherry Zen Template Support Thread

Cherry Zen Template Support Thread

Views: 844,753

Results 441 to 460 of 3,245
3 Nov 2007, 9:12 PM
#441
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Cherry Zen Template Support Thread

mediathing:

I see it...the shadow at the top right corner of the main content is inset to the left too much. Also the site is off center (too much to the right) by about the same amount as the shadow is offset, so my guess is the the two problems are connected in some way. Have you change the width of your site?

Make that banner image smaller at the bottom of your site.

4 Nov 2007, 3:53 AM
#442
kadesign avatar

kadesign

Totally Zenned

Join Date:
Feb 2005
Location:
New Jersey
Posts:
593
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hi,

Both of my sites look okay in IE7 and FF, but they are off in older browsers. They both are too wide even though I have them set to go no wider than 850. What did I do wrong?
Any ideas?

Thanks,
Kelly

4 Nov 2007, 7:28 AM
#443
sfuredi avatar

sfuredi

New Zenner

Join Date:
Aug 2007
Location:
Pittston, PA
Posts:
27
Plugin Contributions:
1

Re: Cherry Zen Template Support Thread

I am redesigning my site using the cherry zen template (which by the way is awesome) however I am running into a problem that I am not sure how to fix. Currently if you check out my create account page my Zip/Postal code box is being pushed to the right hand side. I did modify the width of the template and also added a bunch of mods but I can't see anything that would specifically relate to the moving of just that box. You can see what I mean by going to my work site.

http://oldsite.lotsofgifts.net/index.php?main_page=create_account

Any insight would be greatly appreciated. I would hate to have just one little flaw after spending a bunch of time redesigning my site. :(

4 Nov 2007, 10:04 AM
#444
mediathing avatar

mediathing

Zen Follower

Join Date:
Apr 2005
Location:
London
Posts:
405
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

sfuredi:

I am redesigning my site using the cherry zen template (which by the way is awesome) however I am running into a problem that I am not sure how to fix. Currently if you check out my create account page my Zip/Postal code box is being pushed to the right hand side. I did modify the width of the template and also added a bunch of mods but I can't see anything that would specifically relate to the moving of just that box. You can see what I mean by going to my work site.

http://oldsite.lotsofgifts.net/index.php?main_page=create_account

Any insight would be greatly appreciated. I would hate to have just one little flaw after spending a bunch of time redesigning my site. :(

Hi,

I used Firefox and added two line breaks (<br><br>) after this line which fixed the problem, not sure if that is the correct way to do it though:

<label class="inputLabel" for="postcode">Post/Zip Code:</label>

4 Nov 2007, 12:49 PM
#445
sooraj avatar

sooraj

New Zenner

Join Date:
Oct 2007
Location:
singapore
Posts:
25
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hi,
I tried to use the stylesheet_dropshadow css to apple zen template, i also did copy all the images wich the css looks for..but unable to get thhe dropshadow look for the productinfo page.. is there anything i miss??

4 Nov 2007, 4:00 PM
#446
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

sooraj:

Hi,
I tried to use the stylesheet_dropshadow css to apple zen template, i also did copy all the images wich the css looks for..but unable to get thhe dropshadow look for the productinfo page.. is there anything i miss??

You have to also upload includes/templates/YOUR_TEMPLATE/templates/tpl_modules_main_product_image.php

from Cherry zen.

4 Nov 2007, 4:03 PM
#447
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

sfuredi:

I am redesigning my site using the cherry zen template (which by the way is awesome) however I am running into a problem that I am not sure how to fix. Currently if you check out my create account page my Zip/Postal code box is being pushed to the right hand side. I did modify the width of the template and also added a bunch of mods but I can't see anything that would specifically relate to the moving of just that box. You can see what I mean by going to my work site.

http://oldsite.lotsofgifts.net/index.php?main_page=create_account

Any insight would be greatly appreciated. I would hate to have just one little flaw after spending a bunch of time redesigning my site. :(

This was fixed in newer versions of this template, but you can change LABEL.inputLabel in stylesheet.css to this:

LABEL.inputLabel {
width:90%;
float:left;
margin:.3em;
}

4 Nov 2007, 4:06 PM
#448
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

sleepless:

Hi,

Both of my sites look okay in IE7 and FF, but they are off in older browsers. They both are too wide even though I have them set to go no wider than 850. What did I do wrong?
Any ideas?

Thanks,
Kelly

Because there are two sections that control width, one for IE, one for other browsers:

#nw {
	width:80%; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
	max-width:850px; /* prevents the main content from getting wider than 1300px in sites other than IE */
	min-width:850px; /* this prevents the main content from getting smaller than 1000px in browsers OTHER THAN IE. You can make this as small as 800px, BUT any smaller than that, and the top header menu will break into two lines. Also, if you make this width 800px, you will need to make sure your product image on the product info page is no wider than 190px */
	}
	
/* IE only. Controls Width of Site and Main Content*/
* html #nw {
	width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1300? "1300px" : d.clientWidth > 1048? "80%" : d.clientWidth < 1048? "1000px" : "80%")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */
	}

So you would change the IE section to this:

/* IE only. Controls Width of Site and Main Content*/
* html #nw {
	width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1300? "850px" : d.clientWidth > 1048? "80%" : d.clientWidth < 1048? "850px" : "80%")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */
	}

Though I'm not sure why you'd not want it to resize for people with wide browser windows?

4 Nov 2007, 5:07 PM
#449
sooraj avatar

sooraj

New Zenner

Join Date:
Oct 2007
Location:
singapore
Posts:
25
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

jettrue:

You have to also upload includes/templates/YOUR_TEMPLATE/templates/tpl_modules_main_product_image.php

from Cherry zen.

Hi.. uploaded but still no result. need to modify anything in the css??

4 Nov 2007, 7:44 PM
#450
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

sooraj:

Hi.. uploaded but still no result. need to modify anything in the css??

Well, you said you already uploaded the shadow css, so I thought you already had that covered.

Add this to your stylesheet.css:

/* css for product image drop shadow and border. To disable the drop shadow and border, simply delete or comment out this section */

#productMainImage {
float:left;
background: url("../images/shadowAlpha.png") no-repeat bottom right !important;
background: url("../images/shadow.gif") no-repeat bottom right;
margin: 10px 0 0 10px !important;
margin: 10px 0 0 5px;
}

#productMainImage img {
display: block;
position: relative;
background: #ffffff;
margin: -3px 6px 6px -3px;
border: 1px solid #a9a9a9; /* defines the border for the product image. To remove the border delete or comment out this line, AND padding: 4px; below */
padding: 4px;
}

/* end css for product image drop shadow */

4 Nov 2007, 8:10 PM
#451
beth_katherine avatar

beth_katherine

Zen Follower

Join Date:
Feb 2007
Posts:
158
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Hello again. Got a weird problem happening. All of the info from my main page stays in place when I click on a category and that page loads in below the main page info. I had a bunch of images on the main page but took them off to see if the problem was them but nope it's something strange happening.

I did install the FAQ manager, could that be the culprit?

http://smockingbooks.com/index.php?main_page=

Beth-Katherine

4 Nov 2007, 8:12 PM
#452
beth_katherine avatar

beth_katherine

Zen Follower

Join Date:
Feb 2007
Posts:
158
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

Correction. It only happens with the top category, all others are fine.

BKK

4 Nov 2007, 8:40 PM
#453
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

Beth-katherine:

Correction. It only happens with the top category, all others are fine.

BKK

Which category specifically, which browser?

Thanks!

4 Nov 2007, 8:43 PM
#454
sfuredi avatar

sfuredi

New Zenner

Join Date:
Aug 2007
Location:
Pittston, PA
Posts:
27
Plugin Contributions:
1

Re: Cherry Zen Template Support Thread

Thanks for the help. That fixed the problem.

5 Nov 2007, 12:51 AM
#455
sooraj avatar

sooraj

New Zenner

Join Date:
Oct 2007
Location:
singapore
Posts:
25
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

jettrue:

Well, you said you already uploaded the shadow css, so I thought you already had that covered.

Add this to your stylesheet.css:

/* css for product image drop shadow and border. To disable the drop shadow and border, simply delete or comment out this section */

#productMainImage {
float:left;
background: url("../images/shadowAlpha.png") no-repeat bottom right !important;
background: url("../images/shadow.gif") no-repeat bottom right;
margin: 10px 0 0 10px !important;
margin: 10px 0 0 5px;
}

#productMainImage img {
display: block;
position: relative;
background: #ffffff;
margin: -3px 6px 6px -3px;
border: 1px solid #a9a9a9; /* defines the border for the product image. To remove the border delete or comment out this line, AND padding: 4px; below */
padding: 4px;
}

/* end css for product image drop shadow */
Hi,
Worked out fine..Great ..Now looks nice.Once again thanks for the prompt reply ..and thanks for your time.
Would like to check with you-
is it possible to have the border for image for subcategories page?

5 Nov 2007, 1:01 AM
#456
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Cherry Zen Template Support Thread

Hi jettrue thank you for suggesting to me to make my banner image smaller at the bottom of my site. Thats what the problem was.Thank you again.

5 Nov 2007, 1:26 AM
#457
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

sooraj:

Hi,
Worked out fine..Great ..Now looks nice.Once again thanks for the prompt reply ..and thanks for your time.
Would like to check with you-
is it possible to have the border for image for subcategories page?

No, unfortunately that is not an easy change, but I'll be looking into this for a future upgrade.

5 Nov 2007, 2:39 AM
#458
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Cherry Zen Template Support Thread

Hi again jettrue, I have another question for you. If I want to use an image for my back ground how would I do that. It's blue now but I want to use like candy canes, Christmas trees or something like that for Christmas. What file would I have to modify for this.
Thank you

5 Nov 2007, 2:54 AM
#459
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Cherry Zen Template Support Thread

countrycharm:

Hi again jettrue, I have another question for you. If I want to use an image for my back ground how would I do that. It's blue now but I want to use like candy canes, Christmas trees or something like that for Christmas. What file would I have to modify for this.
Thank you

You'd save and upload the image in your includes/templates/YOUR_TEMPLATE/images/ folder, then set it as the body tag's background image.

5 Nov 2007, 3:32 AM
#460
cntgifts avatar

cntgifts

Totally Zenned

Join Date:
Sep 2005
Posts:
836
Plugin Contributions:
0

Re: Cherry Zen Template Support Thread

anyway t oget the text for Price to show up beside the price on the product pages