Page 23 of 326 FirstFirst ... 1321222324253373123 ... LastLast
Results 221 to 230 of 3251
  1. #221
    Join Date
    Jul 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    The bottom of your index.php should look like this (this is blank):

    } elseif ($category_depth == 'top') {
    // This section deals with the "home" page at the top level with no options/products selected
    /*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', '');
    } elseif ($category_depth == 'nested') {
    // This section deals with displaying a subcategory
    /*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
    define('HEADING_TITLE', '');
    }
    ?>
    I followed this direction, still the same problem. When I turned on the Category on Main Menu, the welcome messages shows, but when I turned it off, the message will not show but instead this "HEADING_TITLE" will show. You can see it on my site now.

    Can you please do step by step guideline on how to solve the problem, such as actual demonstration of it. I have played with the codes above, but nothing works.

    thanks,

    Isvara

  2. #222
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by sleepless View Post
    Hi Jade,

    I am trying to remove the border around my Featured Products, New Products and Monthly Specials. I also would like the background to be white and include an image to the left of the wording. I have a floral image that matches the image to the left of the Welcome to Sleepless Nights Online.
    I have tried adding the following to my css with no luck. I have tried various combinations for the css but no luck. This worked on the old one but it was tables.



    Any idea how I can do this with this one?

    Thanks in advance,
    Kelly
    Your code works just fine, you just didn't erase my coding for centerboxheading. Search the file for other instances of .centerboxheading, erase mine, and then your will work.

  3. #223
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by isvara99###################### View Post
    I followed this direction, still the same problem. When I turned on the Category on Main Menu, the welcome messages shows, but when I turned it off, the message will not show but instead this "HEADING_TITLE" will show. You can see it on my site now.

    Can you please do step by step guideline on how to solve the problem, such as actual demonstration of it. I have played with the codes above, but nothing works.

    thanks,

    Isvara
    If HEADING_TITLE is showing, that means there is a problem in the language file.
    Around line 32 in includes/languages/english/YOUR_TEMPLATE/index.php, you need another like this:

    define('HEADING_TITLE', 'Available Products');
    if you want it blank, it should be this:

    define('HEADING_TITLE', '');

    My advice to you is to reload the original. Also, make sure you are changing the right file (are you changing the one inside your template folder, or the one inside english/)?

  4. #224
    Join Date
    Jul 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    If HEADING_TITLE is showing, that means there is a problem in the language file.
    Around line 32 in includes/languages/english/YOUR_TEMPLATE/index.php, you need another like this:

    define('HEADING_TITLE', 'Available Products');
    if you want it blank, it should be this:

    define('HEADING_TITLE', '');

    My advice to you is to reload the original. Also, make sure you are changing the right file (are you changing the one inside your template folder, or the one inside english/)?
    I deleted the one inside the english folder, using only from the template folder.

  5. #225
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Cherry Zen Template Support Thread

    Sorry about that. My site is here.
    http://www.TheGoodShepherdStore.com

    I have my original logo up now

  6. #226
    Join Date
    Jul 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by isvara99###################### View Post
    I deleted the one inside the english folder, using only from the template folder.
    I followed your earlier advice. I reload a fresh index.php file and that fixed the problem.
    Thanks for your advice. You have been helpful. I'll send a donation as soon as I start making money on the site.
    One question, how do I change the color of the product price on the main page. I can't seem to locate it on the css file.

    thanks,

    Isvara dasa.

  7. #227
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by countrycharm View Post
    Sorry about that. My site is here.
    http://www.TheGoodShepherdStore.com

    I have my original logo up now
    Now can I see it with your flash logo changes? That way I can see why it may not be working?

  8. #228
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by isvara99###################### View Post
    I followed your earlier advice. I reload a fresh index.php file and that fixed the problem.
    Thanks for your advice. You have been helpful. I'll send a donation as soon as I start making money on the site.
    One question, how do I change the color of the product price on the main page. I can't seem to locate it on the css file.

    thanks,

    Isvara dasa.
    Well, is not designed to be changed by default. You will need to make some changes in a few files. There is currently no style surrounding the price, so if you want to style it, you'll need to add a <div> around that section.

    Open up

    includes/modules/YOUR_TEMPLATE/new_products.php,
    includes/modules/YOUR_TEMPLATE/featured_products.php,
    includes/modules/YOUR_TEMPLATE/specials_index.php

    Find this piece of code:

    '</a><br />' . $products_price

    change ONLY THAT to this (make sure you're replacing the exact code above):

    '</a><br /><span class="indexPrice">' . $products_price . '</span>'

    Then you'll be able to style it in the css like this:

    .indexPrice {color:#990000;}

  9. #229
    Join Date
    Jul 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Well, is not designed to be changed by default. You will need to make some changes in a few files. There is currently no style surrounding the price, so if you want to style it, you'll need to add a <div> around that section.

    Open up

    includes/modules/YOUR_TEMPLATE/new_products.php,
    includes/modules/YOUR_TEMPLATE/featured_products.php,
    includes/modules/YOUR_TEMPLATE/specials_index.php

    Find this piece of code:

    '</a><br />' . $products_price

    change ONLY THAT to this (make sure you're replacing the exact code above):

    '</a><br /><span class="indexPrice">' . $products_price . '</span>'

    Then you'll be able to style it in the css like this:

    .indexPrice {color:#990000;}
    where in the css do I insert the code?

  10. #230
    Join Date
    Sep 2007
    Posts
    60
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I'm looking to customize the bg image in the EZPages header. I'm editing the lines:

    #navEZPagesTop {
    background:url("../images/ezbg.gif") repeat-x;
    text-align: right /* grey background image behind ezpages section */
    }

    in the file: /includes/templates/cherry_zen/css/stylesheet.css but nothing happens.

    Any help would be appreciated.

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR