Page 12 of 47 FirstFirst ... 2101112131422 ... LastLast
Results 111 to 120 of 462
  1. #111
    Join Date
    Jan 2007
    Posts
    5
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Hi,

    I am new to this, so I hope I am posting this correctly. I love the template, but so far I am having a problem getting the topnav.gif to show up at the top of the page. In the space this should be showing I am showing 'Get your Baseball Stuff here'. That was what I had keyed in as a test when I was working on the Classic template. I believe I have my override path right:

    includes\templates\mysimplezen\english\simple_zen\english.php

    When I look at english.php, I see where the links are, but in my FTP Client, where it says Header Sales Text Goes here, it is shaded gray, like it has been commented out. Any idea on how to go about getting the images at the top? Here is a link to the page:

    http://web-host-design.com/eugene/catalog/

    Thanks in advance,
    Eugene

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by dharma View Post
    Again, Great Template!

    my issue is that some pages (with mods) have bullet points that appear in the left sidebox area (see jpeg) (only with Mozilla browsers, IE ok)

    I need to have more space between the sidebox and the body, I can do this by increasing the size of the sideboxes in the admin, but I like it at 150px (tight to the left)

    Is there a way to either make the left side box larger only on right side? or create more space between the left sidebox and body?

    also........ I just installed ZC 1.3.7 are there any tweaks for SZ?, or are we good to go with SZ 1.3.6 on ZC 1.3.7?
    Hi There,

    That issue in your screenshot is actually an issue with the wishlist mod (I use it frequently in zen installs). Anyway, if you open up includes/templates/your_template/un_wishlist/tpl_un_wishlist_default.php, you'll see that at the top of the page it just has:

    Code:
    <div id="un"> <!-- begin (un) id for styling -->
    It needs to be:

    Code:
    <div class="centerColumn" id="un"> <!-- begin (un) id for styling -->
    without that "centerColumn" class, it doesn't indent like it should. You'll need to open up all of the un_wishlist files (there's a bunch, go to the un_wishlist_edit/ folder, un_wishlist_email/ folder, etc.

    As for Simple_Zen and 1.3.7, it will still work, the only file affected is:

    includes/templates/simple_zen/common/tpl_main_page.php

    and I'll add a post regarding that in just a bit, and update the download. :-)

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by jedbase View Post
    Hi,

    I am new to this, so I hope I am posting this correctly. I love the template, but so far I am having a problem getting the topnav.gif to show up at the top of the page. In the space this should be showing I am showing 'Get your Baseball Stuff here'. That was what I had keyed in as a test when I was working on the Classic template. I believe I have my override path right:

    includes\templates\mysimplezen\english\simple_zen\english.php

    When I look at english.php, I see where the links are, but in my FTP Client, where it says Header Sales Text Goes here, it is shaded gray, like it has been commented out. Any idea on how to go about getting the images at the top? Here is a link to the page:

    http://web-host-design.com/eugene/catalog/

    Thanks in advance,
    Eugene
    Hi Eugene,

    Ok, what are you using for this template. mysimplezen OR simple_zen?

    Also, the defines for that header image is not in english.php, its in header.php.

    The override path, if you have used simple_zen as the folder names, should be:

    includes/languages/english/simple_zen/header.php

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

    Default Update for 1.3.7

    Here are the instructions on using this template with 1.3.7. The template still works fine without these updates, but 1.3.7 added the option where you can turn the breadcrumb links ON, OFF, or OFF on the home page only (so there's no "Home" link on the home page). I had set this template to AUTOMATICALLY turn off the breadcrumbs on the home page, these changes allow you to use the new functionality fully.

    Open up includes/templates/simple_zen/common/tpl_main_page.php

    1) ~ line 51, change this:

    Code:
      $body_id = str_replace('_', '', $_GET['main_page']);
    to this:

    Code:
    $body_id = ($this_is_main_page) ? 'indexHome' : str_replace('_', '', $_GET['main_page']);

    2) ~ line 94, change this:

    Code:
    <!-- bof  breadcrumb -->
    <?php if (DEFINE_BREADCRUMB_STATUS == '1' && ($current_page!='index' || (int)$cPath>0 )) { ?>    <div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
    <?php } ?>
    <!-- eof breadcrumb -->
    to this:

    Code:
    <!-- bof  breadcrumb -->
    
    <?php if (DEFINE_BREADCRUMB_STATUS == '1' || (DEFINE_BREADCRUMB_STATUS == '2' && !$this_is_main_page) ) { ?>
    
        <div id="navBreadCrumb"><?php echo $breadcrumb->trail(BREAD_CRUMBS_SEPARATOR); ?></div>
    
    <?php } ?>
    
    <!-- eof breadcrumb -->
    3) is actually not a change from 1.3.6 to 1.3.7, but it seems I left a chunk of code out:

    ~ line 109, find:
    Code:
    <?php
     /**
      * prepares and displays center column
      *
      */
     require($body_code); ?>
    Right above that, add this:

    Code:
    <!-- bof upload alerts -->
    
    <?php if ($messageStack->size('upload') > 0) echo $messageStack->output('upload'); ?>
    
    <!-- eof upload alerts -->
    That's it~

  5. #115
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Hi Jade!

    Thank for the wish list tweak, there is some other mod that jumps in the left sidebox too, (which escapes me now) but I will try that fix to it also, if it helps.

    and thanks for the update to ZC 1.3.7!....You were already ahead of the game with the breadcrumb off on the home page!

    Oh! There is a new button: "log off" in 1.3.7 can you provide a blank button and font info for making one of your fab buttons to go with SZ? As I also need a "delete" , "secure login" & "secure checkout" buttons...

    Thanks Again!

  6. #116
    Join Date
    Nov 2006
    Posts
    3
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Hi,

    I use the simple Zen 1.8 on my Zen Cart 1.3.5 (German version). I want to remove the shopping cart/contact us/my account links from the header. So I comment the "Top Nav Links with Image and link only" in the css file out but the links are still there.

    You can see it here: http://lm.teestube-online.de

    Anyone an idea what I have to do to remove the links?


    Thanks and greats

    Christian

  7. #117
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by Christian111 View Post
    Hi,

    I use the simple Zen 1.8 on my Zen Cart 1.3.5 (German version). I want to remove the shopping cart/contact us/my account links from the header. So I comment the "Top Nav Links with Image and link only" in the css file out but the links are still there.

    You can see it here: http://lm.teestube-online.de

    Anyone an idea what I have to do to remove the links?


    Thanks and greats

    Christian
    Hi Christain

    The links are part of the HTML generated by your common/tpl_header.php file. The CSS section that commented out styles these links, so all you have removed is the styling rather than the links themselves. To remove the liks you would need either to comment them out in the tpl_header.php file, or you could hide them by adding the following to your stylesheet
    #navMain {display:none}
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  8. #118
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Hello!

    I am trying to fix a small bug on this mod in IE6:

    http://www.zen-cart.com/forum/showthread.php?t=55408

    Would this section of the CSS effect it?

    * {
    margin:0;
    padding:0;
    }

  9. #119
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by dharma View Post
    Hello!

    I am trying to fix a small bug on this mod in IE6:

    http://www.zen-cart.com/forum/showthread.php?t=55408

    Would this section of the CSS effect it?

    * {
    margin:0;
    padding:0;
    }
    No. I'll explain the likely reason for the problem back in the other thread.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  10. #120
    Join Date
    Jan 2007
    Posts
    5
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Hi,

    I got my earlier problem fixed. I was simply not using the overrides correctly. My question now is, I would like to have my EZpage links show up at the bottom of the page. Right now, they can only be seen when rolled over. Where is the .CSS to make this change? I have seen two places mentioned, but is either one of these correct?

    #navSupp and #navSuppWrapper

    tpl_footer.php

    Also, is there a way to make categories and information line up even to the left?

    Here is my link: http://web-host-design.com/eugene/catalog/

    Thanks,
    Eugene

 

 
Page 12 of 47 FirstFirst ... 2101112131422 ... LastLast

Similar Threads

  1. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  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. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 PM

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