Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
Remove .attribImg from this long line in the css.
Code:
#cartProdTitle,.centeredContent,TH,#cartEmptyText,#cartBoxGVButton,#cartBoxEmpty,#cartBoxVoucherBalance,#navCatTabsWrapper,#navEZPageNextPrev,#bannerOne,#bannerTwo,#bannerThree,#bannerFour,#bannerFive,#bannerSix,#siteinfoLegal,#siteinfoCredits,#siteinfoStatus,#siteinfoIP,.center,.cartRemoveItemDisplay,.cartQuantityUpdate,.cartQuantity,.cartTotalsDisplay,#cartBoxGVBalance,.leftBoxHeading,.centerBoxHeading,.rightBoxHeading,.productListing-data,.accountQuantityDisplay,.ratingRow,LABEL#textAreaReviews,#reviewsInfoDefaultProductImage,#productReviewsDefaultProductImage,#reviewWriteMainImage,.centerBoxContents,.specialsListBoxContents,.categoryListBoxContents,.additionalImages,.centerBoxContentsSpecials,.centerBoxContentsAlsoPurch,.centerBoxContentsFeatured,.centerBoxContentsBestSellers,.centerBoxContentsNew,.gvBal,.attribImg,#linksboxContent {
text-align:center;
}
Wow! You are awesome!!!:bigups::hug::clap:
Thank you soooo much!!
Matt
Re: Cherry Zen Template Support Thread
About the box header images.
Do you notice that they load slower than the rest of the page? They seem to load last, yet the header images at the top and teh center part load fast.
It looks like header is first, center is second then side boxes load third.
Is there a way the template can be made to load all at once or atleast, the header part and the side boxes first?
Re: Cherry Zen Template Support Thread
Cherry Zen template & Return Authorization form..
I am having display problem in Cherry Zen after return authorization is submitted. Clyde had a look and suggested I ask here. Test site is at:
http://store.annron.com see how page is displayed after the form is submitted. Any suggestion?
Thanks
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
maraud
About the box header images.
Do you notice that they load slower than the rest of the page? They seem to load last, yet the header images at the top and teh center part load fast.
It looks like header is first, center is second then side boxes load third.
Is there a way the template can be made to load all at once or atleast, the header part and the side boxes first?
Do you notice this at my test site, www.cherryzen.jadetrue.com? Even when I clear my browsers cache, the load difference between images is negligible to my eyes. Browsers load images in the order they appear in the html. The sideboxes are the last section in the html, however I have no plans to change the order of the way the template is arranged, so I have no good suggestions. :-)
Re: Cherry Zen Template Support Thread
Hello. Like all before me, I agree that this is an awesome template. I have a question which has been hit around several times already here. I'm sure if I wasn't into my 12th hour with this stuff I would have the time and patience to search for it properly (or more properly). My long description is in a box at the very bottom of the details page. I'm not sure what I've done to do this. I would like the long descr. up to the right of the image just like the short one is on the list page. The part number and quantity can go just under the image (I swear it was like this at some point) or under the long description. Any help?
Heres a link to an EXAMPLE....
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Veronika7747
Cherry Zen template & Return Authorization form..
I am having display problem in Cherry Zen after return authorization is submitted. Clyde had a look and suggested I ask here. Test site is at:
http://store.annron.com see how page is displayed after the form is submitted. Any suggestion?
Thanks
I replied in the RMA thread, it is an issue with that mod... :smile:
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
mugyver
Hello. Like all before me, I agree that this is an awesome template. I have a question which has been hit around several times already here. I'm sure if I wasn't into my 12th hour with this stuff I would have the time and patience to search for it properly (or more properly). My long description is in a box at the very bottom of the details page. I'm not sure what I've done to do this. I would like the long descr. up to the right of the image just like the short one is on the list page. The part number and quantity can go just under the image (I swear it was like this at some point) or under the long description. Any help?
Heres a link to an
EXAMPLE....
I designed the template like that. However, you can open up includes/templates/cherry_zen/templates/tpl_product_info_display.php and move the description section wherever you'd like it. Or, you can simply delete that file from the server, if you'd like the original stock zen cart product layout. :smile:
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
I replied in the RMA thread, it is an issue with that mod... :smile:
hmm, when I switch to classic template, all seems fine....
I'll keep looking
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
Veronika7747
hmm, when I switch to classic template, all seems fine....
I'll keep looking
I promise, its not the cherry zen template, it is an error in the module. The classic template is not a floating <div> based template like Cherry Zen is. The extra </div> is there even when you switch to classic template, but since the classic template is a simpler template, it does not break with the error. All "floating" based designs tend to be more finicky when there is a <div> issue. Believe me, I've seen it happen enough with this template to know what's going on. :hug:
I don't have a site with the mod installed to test this fix, but I think if you change the last lines of tpl_returns_default.php from this:
Code:
</fieldset>
<?php
}
?>
</div>
</form>
<div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
</div>
to this:
Code:
</fieldset>
</div>
<?php
}
?>
</form>
<div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
</div>
The problem will go away. It is a matter of a misplaced </div>. Anyway, change that, and let me know if the issue goes away.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jettrue
I promise, its not the cherry zen template, it is an error in the module. The classic template is not a floating <div> based template like Cherry Zen is. The extra </div> is there even when you switch to classic template, but since the classic template is a simpler template, it does not break with the error. All "floating" based designs tend to be more finicky when there is a <div> issue. Believe me, I've seen it happen enough with this template to know what's going on. :hug:
I don't have a site with the mod installed to test this fix, but I think if you change the last lines of tpl_returns_default.php from this:
Code:
</fieldset>
<?php
}
?>
</div>
</form>
<div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
</div>
to this:
Code:
</fieldset>
</div>
<?php
}
?>
</form>
<div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
</div>
The problem will go away. It is a matter of a misplaced </div>. Anyway, change that, and let me know if the issue goes away.
:clap: Thank you!! That move fixed it....:clap: