Page 91 of 305 FirstFirst ... 41818990919293101141191 ... LastLast
Results 901 to 910 of 3042
  1. #901
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by high2K View Post
    See http://www.keela.co.uk.tango.webhost...index&cPath=21
    where I'd like the gift cert image to be on the left of the "Gift Certificates" header instead of underneath
    You could add this to your css:

    #categoryImgListing {float:left;}
    #productListHeading {float:left;padding:.5em;}
    #indexProductListCatDescription {clear:both;}

    And then you'd need to open up includes/templates/YOUR_TEMPLATE/templates/tpl_index_product_list.php to make the image show up before the heading.

  2. #902
    Join Date
    May 2007
    Posts
    181
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    They can be anywhere, but my guess is there is an issue with that. Give me an example of a folder you have them in, then show me the corresponding link to the image.
    Here is where I have the image.
    /includes/languages/english/html_includes/apple_zen/define_main_page.php


    And here is the coorsponding link.
    <img src="../../../../../images/image.jpg" alt="" />

    Thanks for your help.

  3. #903
    Join Date
    Mar 2004
    Posts
    44
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    I don't know what you mean by "continue the white spacer bar".
    If you look at the site www.ausableflyrods.com where the nagivation bar is at the top, you'll see |categories|information|etc... the line just prior to CATEGORIES is only 1/2 there. Its not he full length like between the other words.

    Thanks for the other information, I'll check it out.

    Julie

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by nrg77 View Post
    Here is where I have the image.
    /includes/languages/english/html_includes/apple_zen/define_main_page.php


    And here is the coorsponding link.
    <img src="../../../../../images/image.jpg" alt="" />

    Thanks for your help.

    Hmmm... by location, I mean, which folder have you uploaded the image to?
    It looks like you have too many "../" One way to figure it out would be try one less ../ until it works.

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jewelsbyjewls View Post
    If you look at the site www.ausableflyrods.com where the nagivation bar is at the top, you'll see |categories|information|etc... the line just prior to CATEGORIES is only 1/2 there. Its not he full length like between the other words.

    Thanks for the other information, I'll check it out.

    Julie
    You need to add HOME back to the language file.

  6. #906
    Join Date
    May 2007
    Posts
    181
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Hmmm... by location, I mean, which folder have you uploaded the image to?
    It looks like you have too many "../" One way to figure it out would be try one less ../ until it works.
    Hmmm, after further review, it seems nothing works.....!! I've even created an image folder with the image inside in the same place as the define_main_page.php but it still shows the image as an "X" mark. What can I possibly edit that will make this happen? I can't think of one answer for that. I am also certain that the path is correct since it is auto generated in Dreamweaver when you add images.

    If you or anyone knows of this problem, please inform me as this will stop me from launching the site.

    Thanks.

  7. #907
    Join Date
    May 2007
    Posts
    181
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Nevermind.......I found out the reason......

    Thanks...

  8. #908
    Join Date
    May 2006
    Location
    Scotland
    Posts
    198
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    And then you'd need to open up includes/templates/YOUR_TEMPLATE/templates/tpl_index_product_list.php to make the image show up before the heading.
    I already have it set like this:-

    Code:
    // categories_image
      if ($categories_image = zen_get_categories_image($current_category_id)) {
    ?>
    <div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES . $categories_image, '', CATEGORY_ICON_IMAGE_WIDTH, CATEGORY_ICON_IMAGE_HEIGHT); ?></div>
    <?php
      }
    } // categories_image
    ?>
    
    <?php
    // categories_description
        if ($current_categories_description != '') {
    ?>
    <div id="indexProductListCatDescription" class="content"><?php echo $current_categories_description;  ?></div>
    <?php } // categories_description ?>
    Isn't this the image before the description? I'm thinking I don't need to change anything here?

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by high2K View Post
    I already have it set like this:-

    Isn't this the image before the description? I'm thinking I don't need to change anything here?
    Yes, the image is before the category description... but you need the image before the heading, right? So you need to flip:

    Code:
    <h1 id="productListHeading"><?php echo $breadcrumb->last(); ?></h1>

    and


    Code:
      <?php
    if (PRODUCT_LIST_CATEGORIES_IMAGE_STATUS == 'true') {
    // categories_image
      if ($categories_image = zen_get_categories_image($current_category_id)) {
    ?>
      <div id="categoryImgListing" class="categoryImg"><?php echo zen_image(DIR_WS_IMAGES . $categories_image, '', CATEGORY_ICON_IMAGE_WIDTH, CATEGORY_ICON_IMAGE_HEIGHT); ?></div>
      <?php
      }
    } // categories_image
    ?>

  10. #910
    Join Date
    May 2006
    Location
    Scotland
    Posts
    198
    Plugin Contributions
    0

    help question Re: Apple Zen Template Support Thread

    Hi Jettrue,

    You are fab! Thanks for that.
    After promising that I would stop bothering you, I keep coming back with more. I'm really sorry.
    The client now says that they want the image on the home page - inserted into define_main_page.php to stretch right across the area horizontally - ie. 100% width between the grey shadowed borders that go up the sides.
    I cannot see where this is defined. I was looking for margins that I could set to 0 but I can't find it anywhere. Can you help??

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

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