Re: Apple Zen Support Thread
Quote:
Originally Posted by
jdhone
Thank you so much for your patience! For some reason your first explanation did not sink in. I got it fixed, just as you explained. I was hoping that the Category title would be centered at the top as well... I'll poke around to see if I can figure it out, but if you get this and still want to help, it would be geatly appreciated!
Thank you.
You can add this to your css:
#productListHeading {text-align:center;}
Re: Apple Zen Support Thread
i am having the country problem in drop down menu when signing up.
I use cherry skin.
You choose another country and get error to choose your country first which has already been done.
Here is the site
http://stickersuperstore.com.au/
(Sorry I posted this in another thread also)
Re: Apple Zen Support Thread
Quote:
Originally Posted by
Djpete
i am having the country problem in drop down menu when signing up.
I use cherry skin.
You choose another country and get error to choose your country first which has already been done.
Here is the site
http://stickersuperstore.com.au/
(Sorry I posted this in another thread also)
Sorry, this has nothing to do with the template, hopefully someone else will reply to your other post.
Re: Apple Zen Support Thread
When there are no Specials, a blank page displays...
Quote:
Originally Posted by
jettrue
This is a missing feature in zen cart, it doesn't add any default text when there are no products.
I could not get the message to work that Jade suggested here and elsewhere without returning a blank page when there were specials (ironic, yes!). For now instead of an omnipresent specials link, I decided to go with activating the Specials link in the drop down menu only when specials exist. Here is the solution for the standard zen disappearing specials link for the dropdown:
OPEN \includes\templates\apple_zen\common\tpl_drop_menu.php
FIND
Code:
<li><a href="<?php echo zen_href_link(FILENAME_SPECIALS); ?>"><?php echo HEADER_TITLE_SPECIALS; ?></a></li>
REPLACE WITH
Code:
<?php
if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') {
$show_this = $db->Execute("select s.products_id from " . TABLE_SPECIALS . " s where s.status= 1 limit 1");
if ($show_this->RecordCount() > 0) {
echo '<li><a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . HEADER_TITLE_SPECIALS . '</a>' . '</li>';
}
}
?>
Re: Apple Zen Support Thread
Thanks, Cartguin...Re: When there are no Specials, a blank page displays...
that worked!
Re: Apple Zen Support Thread
Quote:
Originally Posted by
Djpete
i am having the country problem in drop down menu when signing up.
I use cherry skin.
You choose another country and get error to choose your country first which has already been done.
Here is the site
http://stickersuperstore.com.au/
(Sorry I posted this in another thread also)
I had the same problem when using PayPal Website payments Pro and Express Checkout. I uninstalled them and tried Website Payments Standard instead and everything is working fine.
Re: Apple Zen Support Thread
Quote:
Originally Posted by
athena
Thanks, Cartguin...Re: When there are no Specials, a blank page displays...
that worked!
This is fixed in the latest version of the template (though it is a zen cart issue, not template specific), though if you use the search feature of this thread you'll find complete instructions on fixing it. There's one post of mine with two steps, then a few posts later, I list a third step that I had forgotten.
Re: Apple Zen Support Thread
Quote:
Originally Posted by
jettrue
You can add this to your css:
#productListHeading {text-align:center;}
Where in the css whould I add this? I added it to the stylesheet.css and it did not do anything. See below.
Code:
* html #centerColumnWrapper, * html #centerColumnWrapperb, * html #headerWrapperb, * html #headerWrapperc, * html #dropMenuWrapperc, * html #dropMenuWrapperd, * html #navSupp {
background:none!important; /* Hides the transparent shadows from older versions of IE */
}
#productListHeading {
text-align:center;
}
#centerColumnWrapper {
background:url(../images/shadowRight.png) repeat-y 100% 0;
}
#centerColumnWrapperb {
background:url(../images/shadowLeft.png) repeat-y 0 0;
}
#navSupp {
background:url(../images/shadowAlpha_bot.png) repeat-x top;
}
I would like the category/subcategory heading to be centered over the category/subcategory listings.
Re: Apple Zen Support Thread
Quote:
Originally Posted by
jdhone
Where in the css whould I add this? I added it to the stylesheet.css and it did not do anything. See below.
Code:
* html #centerColumnWrapper, * html #centerColumnWrapperb, * html #headerWrapperb, * html #headerWrapperc, * html #dropMenuWrapperc, * html #dropMenuWrapperd, * html #navSupp {
background:none!important; /* Hides the transparent shadows from older versions of IE */
}
#productListHeading {
text-align:center;
}
#centerColumnWrapper {
background:url(../images/shadowRight.png) repeat-y 100% 0;
}
#centerColumnWrapperb {
background:url(../images/shadowLeft.png) repeat-y 0 0;
}
#navSupp {
background:url(../images/shadowAlpha_bot.png) repeat-x top;
}
I would like the category/subcategory heading to be centered over the category/subcategory listings.
It doesn't matter where you add it.
It is currently centered in Firefox. To get it to center in IE, try adding this instead:
Code:
#productListHeading {
text-align:center;
margin:0 auto;
}
Re: Apple Zen Support Thread
Quote:
Originally Posted by
jettrue
...the latest version of the template...
An update??? Why you sneaky son of a gun. :smile: This will give me incentive to fix WinMerge (and its scroll rendering issues). Thanks!