Page 2 of 43 FirstFirst 123412 ... LastLast
Results 11 to 20 of 3041

Hybrid View

  1. #1
    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 tobicky View Post
    Thank you for your response it was very helpful.

    I now have two further problems:

    1. In the header the screen splits into 2 frames when the window is resized. Therefore on a 800x600 resolution, my image is not properly displayed. Is it possible to remove the frames?

    2. When I go to the site I get the following error message:

    Error: Access is denied to: http://mysite.co.uk/includes/csshover.htc
    Line: 0
    URL:http://www.mysite.co.uk/

    Can you help resolve these issues?

    Best regards

    Toby
    I would need a link please.

  2. #2
    Join Date
    Feb 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread


  3. #3
    Join Date
    Feb 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hello!

    a. How do I add my store logo along on the very left side beside the menu STORE and make all tabs proportion..

    b. how to change the main table from gray to blue?

    thankz!

    http://latter.com/index.php

    the logo is: http://latter.com/includes/templates...equipments.gif

  4. #4
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Apple Zen Template Support Thread

    Jade/Jet -

    Apple Zen I say. Pretty nifty template you have created and are sharing with the Zen community. Very nice.

    Wondering about the horizontal dropdown menu component(s) in the header of your template. Would this be available in a separate mod/package which could be placed in the header of any other ZC 1.3x shop (based on template_default css template). I created my own basic stripped down template in Zen cart 1.37 (based on template_default) and would like to integrate a similar horizontal drop down menu idea such as yours into my header. Any possibilities in doing that? Thanks.

    Woody

  5. #5
    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 Woodymon View Post
    Jade/Jet -

    Apple Zen I say. Pretty nifty template you have created and are sharing with the Zen community. Very nice.

    Wondering about the horizontal dropdown menu component(s) in the header of your template. Would this be available in a separate mod/package which could be placed in the header of any other ZC 1.3x shop (based on template_default css template). I created my own basic stripped down template in Zen cart 1.37 (based on template_default) and would like to integrate a similar horizontal drop down menu idea such as yours into my header. Any possibilities in doing that? Thanks.

    Woody
    Absolutely! I've been meaning to do this, as the old one floating around has a lot of bugs and issues, and it made me lose about 5 years off my life span trying to fix it... so I'd love to spare someone the same struggle. Thanks for reminding me. I can possibly get to that this afternoon, if not... soon!

  6. #6
    Join Date
    Feb 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Hi There

    I am manipulating your wonderful template and I'm having trouble removing one of the frames, furthermore locating where and what it is. Please can you visit my site www.giftsofwonder.co.uk and identify the white section beneath the tabs and tell me how i can remove this, or at least change the colour?

    I hope you can help

    Many Thanks :)

  7. #7
    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 tobicky View Post
    Hi There

    I am manipulating your wonderful template and I'm having trouble removing one of the frames, furthermore locating where and what it is. Please can you visit my site www.giftsofwonder.co.uk and identify the white section beneath the tabs and tell me how i can remove this, or at least change the colour?

    I hope you can help

    Many Thanks :)
    I'm not at my usual computer, where I can figure things out easily, but I think I know what will fix that issue. That section below the tabs is where the little stripey background image was on my original template. I see you removed that image, but you did not remove the height for that div:

    #centerColumnOuter {
    margin:-.1em .5em 0 .5em;
    width:70em;
    height:1.15em;
    position:relative;
    }

    Try removing the "height:1.15em". Also remove the margin.

  8. #8
    Join Date
    Dec 2006
    Location
    Summer:Ontaio, Winter:Texas
    Posts
    211
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    What is the name of the top green strip? I would like to increase it as I have the notification of items left in the shopping cart going over the "Home" and "Login". Also any suggestion on the width of the drop down for attributes??
    Thanks (http://test.pridepak.com/ZenLevel3)

  9. #9
    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 Sunabac View Post
    What is the name of the top green strip? I would like to increase it as I have the notification of items left in the shopping cart going over the "Home" and "Login". Also any suggestion on the width of the drop down for attributes??
    Thanks (http://test.pridepak.com/ZenLevel3)
    To get any of the css names for any section of the site, just view the source of the site. You can see around that top green strip, you'll see this:

    Code:
      <div id="navMainWrapper">
        <div id="navMain">
          <div id="navMainLinks">
            <ul class="back">
              <li><a href="http://www.zencart137.jadetrue.com/">Home</a></li>
                        <li><a href="http://www.zencart137.jadetrue.com/login.html">Log In</a></li>
                                </ul>
          </div>
    
          <div id="navMainSearch">
            <form name="quick_find_header" action="http://www.zencart137.jadetrue.com/advanced_search_result.html" method="get"><input type="hidden" name="main_page" value="advanced_search_result" /><input type="hidden" name="search_in_description" value="1" /><input type="text" name="keyword" size="6" maxlength="30" class="topSearch" style="width: 100px" value="Enter search keywords here" onfocus="if (this.value == 'Enter search keywords here') this.value = '';" onblur="if (this.value == '') this.value = 'Enter search keywords here';" />&nbsp;<input type="image" src="includes/templates/apple_zen/buttons/english/button_search.gif" alt="Search" title=" Search " /></form>      </div>
        </div>
      </div>
    Then by looking in the css, you'll see that navMainWrapper just defines the color, but #navMain has the width defined:

    #navMain {
    width:70em;
    text-align:center;
    margin:0 auto;
    position:relative;
    }

    But I'm wondering why you get notifications about the cart way up there? What kind of notification?

  10. #10
    Join Date
    Dec 2006
    Location
    Summer:Ontaio, Winter:Texas
    Posts
    211
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    To get any of the css names for any section of the site, just view the source of the site.
    But I'm wondering why you get notifications about the cart way up there? What kind of notification?
    I put in warning about items left in the shopping cart, so now I have this (if there were items left):
    Code:
    <div id="mainWrapper">
      <div class="messageStackCaution larger"><img src="includes/templates/template_default/images/icons/warning.gif" alt="Warning" title=" Warning " width="20" height="20" />  Following items were left in your shopping cart after your last visit. If you do not wish to include them today, please remove them from you cart. Glad to have you back. Happy shopping!</div>
    <!--bof-header logo and navigation display-->
    <div id="headerWrapper">
      <!--bof-navigation display-->
      <div id="navMainWrapper">
        <div id="navMain">
          <div id="navMainLinks">
            <ul class="back">
              <li><a href="http://test.pridepak.com/ZenLevel3/">Home</a></li>
                        <li><a href="http://test.pridepak.com/ZenLevel3/index.php?main_page=logoff">Log Out</a></li>
              <li><a href="http://test.pridepak.com/ZenLevel3/index.php?main_page=account">My Account</a></li>
                                </ul>
          </div>
    and it overlaps the heading in there.

 

 
Page 2 of 43 FirstFirst 123412 ... LastLast

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3726
    Last Post: 2 Feb 2026, 06:28 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

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