Zen Cart Logo
Forums / Addon Templates / Apple Zen Support Thread

Apple Zen Support Thread

Views: 855,578

Results 2,281 to 2,300 of 3,042
4 Oct 2008, 4:09 AM
#2281
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Apple Zen Support Thread

Another detail, if I may: The text within my sideboxes is pressed right up to the left edge. (See example) How can I pull it just slightly to the right?

Thanks!

4 Oct 2008, 4:25 PM
#2282
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Re: Apple Zen Support Thread

MeltDown:

I would like to change the background color of this white area. (The area where it states: I want to change this white area
to a different color)

OK, I was able to finally track this down. Add the background color as shown:

#centerColumnWrapper2b {
background:#e0ffa0;
}

Nope, I spoke too soon :no: It did indeed change the background color of the center column but it also turned the sideboxes that color as well.

Any ideas on how to corretly make this change?

Thanks

4 Oct 2008, 6:14 PM
#2283
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Re: Apple Zen Support Thread

MeltDown:

Nope, I spoke too soon :no: It did indeed change the background color of the center column but it also turned the sideboxes that color as well.

Any ideas on how to corretly make this change?

Thanks

I hate to say it out loud for fear of nixubg the deal but I do believe that I've worked it out: This does make the background color change:

#centerColumnWrapper2b {
background:#e0ffa0;
}

But then to modify individually the sidebox color I made this change:

#navColumnTwo, #navColumnOne {
background:#e0e0ff;
}

Potentially far from proper, it still gets me where I need to go today! However, I'm still skeptical... If someone knows of a more efficient and/or more correct way please feel free to post!

8 Oct 2008, 4:40 AM
#2284
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Re: Apple Zen Support Thread

MeltDown:

Another detail, if I may: The text within my sideboxes is pressed right up to the left edge. (See example) How can I pull it just slightly to the right?

Thanks!

I realize that I'm just talking to myself at this point but I was able to track down a solution to this: See this thread.

10 Oct 2008, 1:13 AM
#2285
marcelarr avatar

marcelarr

New Zenner

Join Date:
Oct 2008
Posts:
54
Plugin Contributions:
0

Re: Apple Zen Support Thread

Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.

I can't figure out how to, neither in the spanish or english... does anyone know how to?:ohmy:

10 Oct 2008, 2:09 AM
#2286
marcelarr avatar

marcelarr

New Zenner

Join Date:
Oct 2008
Posts:
54
Plugin Contributions:
0

Re: Apple Zen Support Thread

Aslo, could anyone offer any help on centering the image of the product on the product information page, its completley to the left and there is a huge white piece on the right! Love the templete, though!

11 Oct 2008, 11:17 AM
#2287
meltdown avatar

meltdown

Totally Zenned

Join Date:
Jun 2006
Location:
My family and I live in Brighton, England
Posts:
947
Plugin Contributions:
0

Re: Apple Zen Support Thread

Take a look at the very top of the page of the original Apple Zen Template, where the Home, Login and Seach apparatus are. Now take a look at the same area in my modified Apple Zen. See how the page elements are not quite tight to the top? Obviously I made some mistake along the way but now have no idea what it might have been. Here is the contents of my stylesheet.css, if anyone can spot what I did it would be much appreciated!!

/**

  • Main CSS Stylesheet
  • @package templateSystem
  • @copyright Copyright 2003-2005 Zen Cart Development Team
  • @copyright Portions Copyright 2003 osCommerce
  • @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
  • @version $Id:stylesheet.css 4813 2006-10-23 02:13:53Z drbyte $
    */

/* Instructions to have a narrow top header (to match the width of the main site content) can be found around line 206 (search for: #headerWrapperb )

/* I've included 4 color choices - apple green (default), blue, red, and grey. To change from green, simply
comment out the green section, and uncomment the color section you want the site to be. You'll also need to
open up includes/templates/apple_zen/css/stylesheet_header_menu.css to change the colors in the drop down menu. */

/*green */
#navMainWrapper {background:#bbd17e;}
#logoWrapperOuter {background:#e0ffa0;}
#navEZPagesTopWrapper {background:#D5E88F;}
#navCatTabsWrapper {background:#BBD17E;}
#navBreadCrumb {background:#BBD17E;}
body {background:#D16587 url(../images/site-bg.gif) 0 9em repeat-x;/*remove this background image for narrow header, unless of course you want it there (green stripe background) /}
h3.leftBoxHeading, h3.rightBoxHeading {background:url(../images/sideboxleft.gif) no-repeat top left;}
/
eof green */

/* blue
#navMainWrapper {background:#6C99D9; }
#logoWrapperOuter {background:#fff;}
#navEZPagesTopWrapper {background:#6C99D9; }
#navCatTabsWrapper {background:#6084C4; }
#navBreadCrumb {background:#6084C4; }
body {background:url(../images/site-bg-blue.gif) 0 9em repeat-x; }
h3.leftBoxHeading, h3.rightBoxHeading {background:url(../images/sideboxleft-blue.gif) no-repeat top left; }
/eof blue/

/* red
#navMainWrapper {background:#DC262E;}
#logoWrapperOuter {background:#fff;}
#navEZPagesTopWrapper {background:#DC262E;}
#navCatTabsWrapper {background:#C62122;}
#navBreadCrumb {background:#C62122;}
body {background:url(../images/site-bg-red.gif) 0 9em repeat-x;}
h3.leftBoxHeading, h3.rightBoxHeading {background:url(../images/sideboxleft-red.gif) no-repeat top left;}
/eof red/

/* grey
#navMainWrapper {background:#D5D5D5;}
#logoWrapperOuter {background:#fff;}
#navEZPagesTopWrapper {background:#D5D5D5;}
#navCatTabsWrapper {background:#C8C8C8;}
#navBreadCrumb {background:#C8C8C8;}
body {background:url(../images/site-bg-grey.gif) 0 9em repeat-x;}
h3.leftBoxHeading, h3.rightBoxHeading {background:url(../images/sideboxleft-grey.gif) no-repeat top left;}
/eof grey/

/* common to all colors*/
#centerColumnOuter {background:url(../images/headerborder.gif) repeat-y;}
#centerColumnWrapper2{background:url(../images/content_bg2.gif) repeat-y 20% 0;}

/* eof color and background edits */

/* If you'd like a narrow top header (to match the width of the main content, please follow the instructions below.
If you want the diagonal stripe background removed, you'll also need to remove that from the body tag near the top of this stylesheet. /
#headerWrappera {
width:100%; /
change to width:71em; for narrow header*/
margin:0 auto;
text-align:center;
}
#navMainWrapper, #navCatTabsWrapper, #navEZPagesTopWrapper {
width:100%; /* change to width:70em; for narrow header*/
margin:0 auto;
text-align:center;
}
#navMain {
width:70em; /* remove width:70em; for narrow header /
margin:0 auto;
}
#dropMenuWrapper {
width:100%;
background:#BBD17E; /
remove background:#929292; for narrow header*/
margin:0 auto;
height:2.18em;
position:absolute;
top:0;
left:0;
}
/* uncomment the section below for narrow header */

/*
#headerWrapperb {
background:url(../images/shadowRight.png) repeat-y 100% 0;
width:71em;
}
#headerWrapperc {
background:url(../images/shadowLeft.png) repeat-y 0 0;
width:71em;
}
#dropMenuWrapperb {
width:71em;
margin:0 auto;
position:relative;
}
#dropMenuWrapperc {
background:url(../images/shadowRight.png) repeat-y 100% 0;
width:71em;
margin:0 auto;
position:absolute;
left:0;
height:2.18em;
}
#dropMenuWrapperd {
background:url(../images/shadowLeft.png) repeat-y 0 0;
width:71em;
margin:0 auto;
position:absolute;
left:0;
height:2.18em;
}
/
/
end of changes for narrow header */

  • html #centerColumnWrapper, * html #centerColumnWrapperb, * html #headerWrapperb, * html #headerWrapperc, * html #dropMenuWrapperc, * html #dropMenuWrapperd, * html #bottomLine {
    background:none!important; /* Hides the transparent shadows from older versions of IE */
    }
  • html #centerColumnWrapper2b, *html #centerColumnOuter {
    border:1px solid #999;
    border-top:none;
    }
    *html #centerColumnOuter {
    border-bottom:none;
    }
    #centerColumnWrapper {
    background:url(../images/shadowRight.png) repeat-y 100% 0;
    }
    #centerColumnWrapperb {
    background:url(../images/shadowLeft.png) repeat-y 0 0;
    }
    #bottomLine {
    background:url(../images/shadowAlpha_bot.png) repeat-x top;
    }
  • {
    margin:0;
    padding:0;
    }
    body {
    font-family:tahoma, verdana, arial, helvetica, sans-serif;
    font-size:73.5%;
    color:#000; /main site font color/
    }
    a img {
    border:none;
    }
    a:link {
    color:#4f4f4f; /*site links color /
    text-decoration:none;
    }
    a:visited {
    text-decoration:none;
    color:#313131;
    }
    a:hover {
    color:#000; /
    color when links are hovered over /
    text-decoration:none;
    }
    ul, ol {
    text-align:left;
    padding-left:25px;
    margin-left:10px;
    margin-bottom:10px;
    }
    h1 {
    font-size:1.3em;
    }
    h2 {
    font-size:1.2em;
    }
    h3 {
    font-size:1.1em;
    }
    h4, h5, h6, h4.optionName, LEGEND, ADDRESS, .sideBoxContent, .larger {
    font-size:1em;
    }
    LEGEND {
    color:#333;
    }
    .biggerText {
    font-size:1.1em;
    }
    h1, h2, h3, h4, h5, h6 {
    margin:.3em 0;
    }
    CODE {
    font-family:tahoma, arial, verdana, helvetica, sans-serif;
    font-size:1em;
    }
    FORM, SELECT {
    display:inline;
    font-size:1em;
    margin:.5em;
    }
    #categoriesselectContent select {
    font-size:.9em
    }
    option {
    padding-right:.5em;
    }
    INPUT {
    margin:.3em .5em;
    }
    html>//body input[type=checkbox], html>//body input[type=radio] {
    float:left;
    clear:both;
    }
    html>//body .checkboxLabel, html>//body .radioButtonLabel {
    margin:0 .2em .5em 0;
    float:left;
    }
    .ratingRow input[type=radio] {
    float:none;
    margin:0 .5em;
    }
    TEXTAREA {
    margin:auto;
    display:block;
    width:97%;
    }
    input:focus, select:focus, textarea:focus {
    background:#F3F9E1;
    }
    FIELDSET {
    padding:.5em;
    margin:.5em 0;
    border:1px solid #ccc;
    }
    LEGEND {
    font-weight:700;
    padding:.3em;
    }
    h4.optionName {
    line-height:1.5em;
    padding-right:1em;
    }
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
    float:left;
    }
    LABEL.inputLabel {
    width:85%;
    float:left;
    margin:.3em 0;
    }
    LABEL.inputLabelPayment {
    width:15em;
    float:left;
    padding:.5em;
    }
    #checkoutpaymentBody input[type=radio] {
    margin:15px 0
    }
    #checkoutpaymentBody .radioButtonLabel {
    padding:10px
    }
    LABEL.selectLabel, LABEL.switchedLabel, LABEL.uploadsLabel {
    width:12em;
    float:left;
    }
    ADDRESS {
    padding-right:40px;
    }
    .clearBoth {
    clear:both;
    height:0;
    font-size:0;
    line-height:0;
    margin:0;
    padding:0;
    }
    .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }
    .clearfix {
    display: inline-block;
    }
    /
    Hides from IE-mac */
  • html .clearfix {
    height: 1%;
    }
    .clearfix {
    display: block;
    }
    /* End hide from IE-mac */

HR {
height:1px;
margin:.5em 0;
border:none;
border-bottom:1px solid #9a9a9a;
}
/warnings, errors, messages/
.messageStackWarning, .messageStackError, .messageStackSuccess, .messageStackCaution {
padding:0.2em;
}
.messageStackWarning, .messageStackError {
background:#900;
color:#fff;
}
.messageStackSuccess {
background:#929292;
}
.messageStackCaution {
background:#ff9;
}
/wrappers - page or section containers/
#mainWrapper {
text-align:center;
vertical-align:top;
position:relative;
padding-bottom:25px;
}
/* Start hide from IE-Mac */

  • html #mainWrapper {
    height: 1%;
    }
    /* End Hide from IE-Mac */
    #headerWrapper {
    width:100%;
    text-align:center;
    margin:0 auto;
    background:#e0ffa0;
    }
    #logoWrapperOuter {
    width:70em;
    margin:0 auto;
    overflow:hidden;
    }
    #tagline {
    font-size:1.3em;
    text-align:center;
    padding-top:15px;
    }
    #navCatTabs, #navEZPagesTop {
    font-weight:700;
    margin:0 auto;
    padding:.5em 0;
    }
    #sendSpendWrapper {
    border:1px solid #cacaca;
    float:right;
    margin:0 0 1em 1em;
    }
    .floatingBox, #accountLinksWrapper, #sendSpendWrapper, #checkoutShipto, #checkoutBillto, #navEZPagesTOCWrapper {
    width:47%;
    }
    .wrapperAttribsOptions {
    line-height:2em;
    padding-bottom:1em;
    }
    /navigation/

.navPrevCounter {
font-size:.9em;
}
.navNextPrevList {
display:inline;
white-space:nowrap;
padding:0 1em;
list-style-type:none;
position:relative;
}
#bottomLineWrapper {
width:100%;
margin:0 auto;
margin-top:-6px;
position:relative;
top:2.18em;
}
#bottomLine {
margin:0 auto;
text-align:center;
width:70.3em;
padding-top:1em;
}
#navSuppWrapper {
width:100%;
margin:0 auto;
margin-top:-6px;
float:left;
position:relative;
top:2.18em;
}
#navSupp {
margin:0 auto;
text-align:center;
width:70.3em;
padding-top:1em;
}
#navMainLinks {
float:left;
position:relative;
list-style-type:none;
text-align:left;
font-size:1.2em;
}
#navEZPagesTOC ul, #navCatTabs ul, #navSupp ul, #bottomLine ul, #navMainLinks ul {
list-style-type:none;
text-align:center;
line-height:1.4em;
padding: 0;
margin:0;
}
#navSupp li, #navCatTabs li, #navMainLinks li, #bottomLine li {
display:inline;
padding:0 .5em;
}
#navSupp ul li a, #navCatTabs ul li a, #bottomLine ul li a {
text-decoration:none;
margin:0;
white-space:nowrap;
display:inline;
font-weight:700;
width:0;
}
#navEZPagesTOCWrapper {
font-weight:700;
float:right;
height:1%;
border:1px solid #000;
}
#navEZPagesTOC ul li {
white-space:nowrap;
}
#navEZPagesTOC ul li a {
padding:0 .5em;
}
#navCategoryIcon, .buttonRow, #indexProductListCatDescription {
margin:.5em;
}
#navMainSearch {
margin:0 auto;
text-align:right;
padding:2px 5px 1px;
}
#navMainSearch input {
margin:0 auto;
text-align:right;
padding:2px 5px;
}
#navMainSearch input[type=text] {
margin: 2px 0 0 1em;
}
#navMainSearch input.topSearch {
margin: 0 0 5px 2px;
vertical-align: bottom;
}
#navBreadCrumb {
text-align:left;
padding:.5em;
font-size:.95em
}
#navBreadCrumb a {
padding:.5em 1em;
}
#navColumnTwo, #navColumnOne {
background:#CCD6C2;
float:left;
position:relative;
width:20%;
padding-bottom:20px;
}
/The main content classes/
#contentMainWrapperOuter {
float:left;
width:100%;
}
#contentMainWrapper {
width:71em;
margin:0 auto;
text-align:center;
position:relative;
top:2.18em;
}
#centerColumnWrapper, #centerColumnWrapperb {
width:71em;
}
#centerColumnOuter {
margin:0 .5em;
width:70em;
height:15px;
}
#centerColumnWrapper2 {
margin:0 .5em;
width:70em;
}
#centerColumnWrapper2b {
background:#E0FFA0;
margin:0 auto;
overflow:hidden;
width:70em;
}
.centerColumn {
background:#E0FFA0;
width:75%;
float:right;
margin:0 2% 2% 3%;
text-align:left;
line-height:1.6em;
display:inline; /* fixes IE Bug in IE6 and earlier - do not remove */ }
#contentColumnMain, #navColumnOne, #navColumnTwo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .alert {
vertical-align:top;
}
#productDescription, .shippingEstimatorWrapper {
padding:.5em;
}
.important {
font-weight:700;
}
.gvBal {
float:right;
}
#bannerOne, #bannerTwo, #bannerThree, #bannerFour, #bannerFive, #bannerSix {
padding:.8em;
}
.smallText, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP {
font-size:.9em;
}
#siteinfoLegal, #siteinfoIP, #bannerFive, #bannerSix, .parseTime {
clear:both;
position:relative;
top:2.18em;
}
#cartAdd {
float:right;
text-align:center;
margin:1em;
border:1px solid #000;
padding:1em;
}
.tableHeading TH {
border-bottom:1px solid #ccc;
}
.tableHeading, #cartSubTotal {
background:#e9e9e9;
}
#cartSubTotal {
border-top:1px solid #ccc;
font-weight:700;
text-align:right;
line-height:2.2em;
padding-right:2.5em;
}
.tableRow, .tableHeading, #cartSubTotal {
height:2.2em;
}
.cartProductDisplay, .cartUnitDisplay, .cartTotalDisplay, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, #cartInstructionsDisplay, .cartTotalsDisplay {
padding:.5em 0 0;
}
#cartProdTitle {
text-align:center
}
.cartUnitDisplay, .cartTotalDisplay {
text-align:center;
padding-right:.2em;
}
.cartQuantityUpdate input {
margin:0;
padding:0;
}
.cartRemoveItemDisplay input[type=checkbox] {
float:none;
margin-bottom:1em;
}
#scUpdateQuantity {
width:1.8em;
}
#scProductsHeading {
padding-left:2em;
}
.cartQuantity {
width:4em;
}
.cartNewItem {
position:relative; /do not remove-fixes stupid IEbug/
}
.cartOldItem {
position:relative; /do not remove-fixes stupid IEbug/
}
.cartBoxTotal {
text-align:right;
font-weight:700;
margin:.2em .5em;
}
.cartRemoveItemDisplay {
width:5em;
}
.cartAttribsList {
margin-left:1em;
}
#mediaManager {
width:50%;
margin:.2em;
padding:.5em;
}
.mediaTitle {
float: left;
}
.mediaTypeLink {
float: right;
}
.normalprice, .productSpecialPriceSale {
text-decoration:line-through;
}
.productSpecialPrice, .productSalePrice, .productSpecialPriceSale, .productPriceDiscount, .alert {
color:#900;
}
.orderHistList {
margin:1em;
padding:.2em 0;
}
#ezPageBoxList li {
margin:0;
padding:.2em 0;
}
#cartBoxEmpty, #cartBoxVoucherBalance {
font-weight:700;
}
.totalBox {
width:5.5em;
text-align:right;
padding:.2em;
}
.lineTitle, .amount {
text-align:right;
padding:.2em;
}
.amount {
width:5.5em;
}
#productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage {
margin:.5em 1em 1em 0;
}
#cartImage {
margin:.5em 1em;
}
.attribImg {
width:20%;
margin:.3em 0;
}
.centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {
margin:1em 0;
}
h3.leftBoxHeading, h3.rightBoxHeading {
font-size:1.2em;
color:#424242;
text-transform:uppercase;
font-weight:400;
height:1.5em;
padding:.2em 0 0;
padding-left:15px;
}
.centerBoxHeading {
margin:0;
background:#eee;
padding:.3em 0;
border-top:2px solid #4f4f4f;
border-bottom:2px solid #4f4f4f;
}
.leftBoxHeading, .rightBoxHeading {
margin:0;
border-top:2px solid #fff;
border-bottom:2px solid #fff;
}
.sideBoxContent {
font-size:1.1em;
padding:5px 0;
}
.sideBoxContent ul {
text-align:left;
list-style-type:none;
padding:0 0 0 15px;
margin:0;
}
.sideBoxContent li {
padding:.2em 0;
}
.sideBoxContent select {
margin:0;
padding:0;
width:150px;
}
#categoriesContent {
text-align:left;
padding-left:15px;
}
.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, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .gvBal, .attribImg, .parseTime {
text-align:center;
}
.productListing-data {
border-bottom:1px solid #000;
margin:15px;
padding:15px;
}
.productListing-heading {
border-bottom:1px solid #000;
padding:5px;
}
.productListing-heading a {
border:none;
}
#upProductsHeading {
text-align:left;
}
#upDateHeading {
text-align:right;
}
/misc/
.back {
float:left;
}
.forward, #shoppingCartDefault #PPECbutton {
float:right;
}
.bold {
font-weight:700;
}
.rowOdd {
background:#E8E8E8;
height:1.5em;
vertical-align:top;
}
.rowEven {
background:#F0F0F0;
height:1.5em;
vertical-align:top;
}
.hiddenField {
display:none;
}
.visibleField {
display:inline;
}
#accountLinksWrapper li {
padding:.5em 0;
display:block;
list-style:none;
}
.accountTotalDisplay, .accountTaxDisplay {
width:20%;
text-align:right;
}
.accountQuantityDisplay {
width:10%;
vertical-align:top
}
TR.tableHeading {
background:#cacaca;
height:2em;
}
#siteMapList {
width:90%;
float:right;
}
.ratingRow {
margin:1em 0 1.5em;
}
LABEL#textAreaReviews {
font-weight:400;
margin:1em 0;
}
#popupShippingEstimator, #popupSearchHelp, #popupAdditionalImage, #popupImage, #popupCVVHelp, #popupCouponHelp, #popupAtrribsQuantityPricesHelp, #infoShoppingCart {
background:#fff;
}
.information {
padding:10px 3px;
line-height:150%;
}
#shoppingcartBody #shippingEstimatorContent {
clear:both;
}
.seDisplayedAddressLabel {
background-color:#85C285;
text-align:center;
}
.seDisplayedAddressInfo {
text-transform:uppercase;
text-align:center;
font-weight:400;
}
#seShipTo {
padding:.2em;
}
#descSubLink {
padding-left:.7em;
color:#900;
}
.smallProductImage {
padding:1em;
}
#sorter, #indexProductList select {
float:right;
text-align:right;
}
#indexProductList .inputLabel {
width:100%;
text-align:right;
}
#sorter select, #indexProductList select {
margin:0 .1em;
}

#logosideboxContent { text-align: center;}

#siteinfoLegal {
color:#000000;
}

.legalCopyright a:link {color: #000000; font-weight:bold;}
.legalCopyright a:visited {color: #000000;}
.legalCopyright a:hover {color: #bababa;}
.legalCopyright a:active {color: #4f4f4f;}

.sideBoxContent {
font-size:.975em;
padding:5px;
}

#pageTwoHeading {
display: none;
}

#pageThreeHeading {
display: none;
}

#pageFourHeading {
display: none;
}

#ezPagesHeading {
display: none;
}

#shippingInfoHeading {
display: none;
}

#privacyDefaultHeading {
display: none;
}

#conditionsHeading {
display: none;
}

#aboutUsHeading {
display: none;
}

#siteMapHeading {
display: none;
}

#gvFaqDefaultHeading {
display: none;
}

#discountcouponInfoHeading {
display: none;
}

.category-top {font-size: .80em;}

12 Oct 2008, 8:19 AM
#2288
starruby avatar

starruby

Zen Follower

Join Date:
Nov 2007
Posts:
96
Plugin Contributions:
0

Re: Apple Zen Support Thread

Hi,

My zen cart store link is https://www.starruby.in/store

Could someone guide me with a couple of issues that I am facing:

First, I am wanting to increase the width of the left-hand side column (which shows the Categories, Currency, etc) to accommodate the three word categories in one line.

I tried changing the Column Width - Left Boxes and Column Width - Left in the Admin > Config > Layout Settings, but it does not work.

What am I doing wrong?

Second, in IE, the site displays an error in the bottom bar saying "Done, but with errors on page". When this message is clicked it shows the following error:

Line: 0
Char: 0
Error: Access is denied to: http://starruby.in/store/includes/csshover.htc
Code: 0
URL: http://www.starruby.in/store

Any solutions to this problem? I am running Windows Vista / IE 7

Regards,
Harshil

12 Oct 2008, 3:43 PM
#2289
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

charmedbytina2:

HI!

I've installed this template and changed the colors and a few other things.

I have a few "little" problems now.

  • Home at the bottom is not placed corrrectly
  • The header bars for New Products, etc need a setting (margin right?) so they stop before the main content area ~ similar to the spacing at the beginning of the bar.
  • The line height on the main page (and probably others) won't allow a font size larger than 18 ~ and 18 still seems kind of squeezed together

The site is http://www.xchainstoreclothingonline.com/shop/

(Jade sorry for the hack job to your beautiful template!)

Tina
It's going to be hard to figure it out with the amount of changes made. If I were you, I'd compare the original stylesheet with yours, and return much to its original state, just leaving your color changes the same.

As for the large text, where you have this:

font-family: verdana,arial,helvetica,sans-serif

change it to

line-height:2.5em

12 Oct 2008, 3:46 PM
#2290
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

MeltDown:

I'm driving myself nuts trying to track this down...! :blink:
I would like to change the background color of this white area. (The area where it states: I want to change this white area
to a different color)

Please note that it is not the body {background:#FFA0E0 url(../images/site-bg.gif) 0 9em repeat-x; as I have already made that change.

Thanks!!!
It's controlled by this image:

includes/templates/apple_zen/images/content_bg2.gif

12 Oct 2008, 3:49 PM
#2291
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

jbible:

More issues with IE and the dropmenu.

experimedia.net

In firefox the drop menu is perfect.
In IE 6 and 7 the drop menu does not appear at all?!

Any suggestions?

Thank you.

Be sure you have uploaded csshover.htc and made the changes to the .htaccess file as described in the readme file.

12 Oct 2008, 3:51 PM
#2292
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

marcelarr:

Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.

I can't figure out how to, neither in the spanish or english... does anyone know how to?:ohmy:

Read the readme.

** STEP 4. To remove the text: "To change any of the site colors, open up includes/templates/apple_zen/css/stylesheet.css. To overwrite your own logo, upload your logo.gif to includes/templates/apple_zen/images/" open up includes/languages/english/apple_zen/header.php. To remove the standard zen cart "Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.", open up includes/languages/english/index.php (then once you've changed it, SAVE the file in includes/languages/english/apple_zen/ folder, so that it is not over-written when you do a zen cart upgrade). To remove the "Welcome Guest! Would you like to log yourself in?", open up your admin, and turn it off under "Configuration", "Layout Settings", and turn off "Customer Greeting - Show on Index Page".

12 Oct 2008, 3:57 PM
#2293
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

MeltDown:

Take a look at the very top of the page of the original Apple Zen Template, where the Home, Login and Seach apparatus are. Now take a look at the same area in my modified Apple Zen. See how the page elements are not quite tight to the top? Obviously I made some mistake along the way but now have no idea what it might have been. Here is the contents of my stylesheet.css, if anyone can spot what I did it would be much appreciated!!

Please don't post your entire css file, especially since I can view it once I'm at your site.

The only difference I see is that you created a 26px tall search button, whereas mine is 21px tall.

13 Oct 2008, 12:15 AM
#2294
marcelarr avatar

marcelarr

New Zenner

Join Date:
Oct 2008
Posts:
54
Plugin Contributions:
0

Re: Apple Zen Support Thread

Jade, or anyone else... please help. For the life of me I cannot get my logo the size i want it.

I have tried the instructions in the read me document, and it doesn't work, can you give me any tips?

If you want to take a look
http://www.502skins.com/guatemala/

As you can see, i also have the issue of the header menu being disaligned.

Please help!

13 Oct 2008, 1:39 AM
#2295
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

marcelarr:

Jade, or anyone else... please help. For the life of me I cannot get my logo the size i want it.

I have tried the instructions in the read me document, and it doesn't work, can you give me any tips?

If you want to take a look
http://www.502skins.com/guatemala/

As you can see, i also have the issue of the header menu being disaligned.

Please help!

You have two stylesheets uploaded and they are competing with each other. Delete the extra one and all will be fine.

13 Oct 2008, 2:08 AM
#2296
marcelarr avatar

marcelarr

New Zenner

Join Date:
Oct 2008
Posts:
54
Plugin Contributions:
0

Re: Apple Zen Support Thread

Thanks so much Jade!!!

By the way... love your work!:clap:

13 Oct 2008, 2:10 AM
#2297
marcelarr avatar

marcelarr

New Zenner

Join Date:
Oct 2008
Posts:
54
Plugin Contributions:
0

Re: Apple Zen Support Thread

Any ideas on centering the drop down menu?

13 Oct 2008, 8:38 PM
#2298
jettrue avatar

jettrue

Totally Zenned

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

Re: Apple Zen Support Thread

marcelarr:

Any ideas on centering the drop down menu?

It comes centered, but the issue is that you messed up the commenting in stylesheet_header_menu.css

Since you're using red, why not just delete all the other colors, and just show the red, and remove all of the extra comments to remove any confusion.

15 Oct 2008, 1:54 PM
#2299
marcelarr avatar

marcelarr

New Zenner

Join Date:
Oct 2008
Posts:
54
Plugin Contributions:
0

Re: Apple Zen Support Thread

jettrue:

It comes centered, but the issue is that you messed up the commenting in stylesheet_header_menu.css

Since you're using red, why not just delete all the other colors, and just show the red, and remove all of the extra comments to remove any confusion.

Thanks!! Will do!

16 Oct 2008, 11:32 AM
#2300
jimbofoxman avatar

jimbofoxman

New Zenner

Join Date:
Mar 2008
Posts:
28
Plugin Contributions:
0

Re: Apple Zen Support Thread

My customer emailed me and said he was putting new products into the database and all of the sudden the sideboxes and top dynamic menu disappeared. Looking at the admin activity log, it only shows him accessing catalog stuff and nothing else.

Anyone have any thoughts as to why those items would disappear?

Website: http://www.flagshipmodels.com

THANKS