Page 11 of 47 FirstFirst ... 91011121321 ... LastLast
Results 101 to 110 of 462
  1. #101
    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 MB1 View Post
    got it now i'm curious if how you can disable the right side boxes as i only want them to be displayed on the main page
    You can wrap the sidebox code in some new php to only be displayed on the home page. Open up includes/templates/simple_zen/common/tpl_main_page.php and find:

    Code:
    <?php
    if (COLUMN_RIGHT_STATUS == 0 or (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '')) {
      // global disable of column_right
      $flag_disable_right = true;
    }
    if (!isset($flag_disable_right) || !$flag_disable_right) {
    ?>
    replace with:

    Code:
    <?php
    if (COLUMN_RIGHT_STATUS == 0 or (CUSTOMERS_APPROVAL == '1' and $_SESSION['customer_id'] == '') or ($current_page!='index' || (int)$cPath>0 )) {
      // global disable of column_right
      $flag_disable_right = true;
    }
    if (!isset($flag_disable_right) || !$flag_disable_right) {
    ?>

  2. #102
    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
    Love your template! I am still on the fence about the footer links: being visible only on mouse overs. Is there a way to turn this off?
    That's just a stylesheet mistake. Of course not intentional, LOL!

    Open up the includes/templates/simple_zen/css/stylesheet_new.css and find:
    Code:
    #navMain ul li a, #navSupp ul li a, #navCatTabs ul li a {
    	text-decoration: none;
    	padding: 0em 0.9em;
    	margin: 0;
    	color: #fff;
    	white-space: nowrap;
    	}
    	
    #navCatTabs ul li a {
    	text-decoration: none;
    	padding: 0em 0.9em;
    	margin: 0;
    	color: #666;
    	white-space: nowrap;
    	}
    to:

    Code:
    #navMain ul li a {
    	text-decoration: none;
    	padding: 0em 0.9em;
    	margin: 0;
    	color: #fff;
    	white-space: nowrap;
    	}
    	
    #navCatTabs ul li a, #navSupp ul li a {
    	text-decoration: none;
    	padding: 0em 0.9em;
    	margin: 0;
    	color: #666;
    	white-space: nowrap;
    	}

  3. #103
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    thank you very much i got it working but it only worked after i changed one thing to the code out of pure luck, i change the 0 to 1 in this part of the code

    Code:
    (COLUMN_RIGHT_STATUS == 1 or
    now if you look at my site how do you make both sides follow the same rules take a peak the right sideboxes are differant from the left the title isn't centered and the link color is wrong

    www.gorillagear.ca

  4. #104
    Join Date
    Dec 2006
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Jade, Great template and very good selections. I have a party supply business so I am looking for some obnoxious colors. Would it be possible to have a red, pink, or neon blue navigation bar? If I knew how to edit the .gif for the nav bar I would do it myself. Thanks,

    Dan

  5. #105
    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 DanAKAL View Post
    Jade, Great template and very good selections. I have a party supply business so I am looking for some obnoxious colors. Would it be possible to have a red, pink, or neon blue navigation bar? If I knew how to edit the .gif for the nav bar I would do it myself. Thanks,

    Dan
    Sure... why don't you either PM me a link to your site, or email me a screenshot of your site colors, so I can get the right color? Or even send me a hex color code.

  6. #106
    Join Date
    Dec 2006
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Jade, Got the bright colors for the nav bar. Looks really good for my obnoxious color scheme. Maybe in a few days I'll have it ready for access so all can see. Thanks!

    Dan

  7. #107
    Join Date
    Dec 2006
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Okay I'll Cry Uncle! I would like to remove the link at the very bottom of the page. Not the copyright and powered by but the link displayed outside my store page. The link and box that changes frequently. Sometimes it says Zen Cart and sometimes Credit Card. I'm getting lost trying to find this. Could someone please point me in the direction of where this is located.

    Dan

  8. #108
    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 DanAKAL View Post
    Okay I'll Cry Uncle! I would like to remove the link at the very bottom of the page. Not the copyright and powered by but the link displayed outside my store page. The link and box that changes frequently. Sometimes it says Zen Cart and sometimes Credit Card. I'm getting lost trying to find this. Could someone please point me in the direction of where this is located.

    Dan
    That sounds like a banner box. Go to the admin, then "Configuration", then "Layout Settings"... Toward the bottom you'll see options to turn off different banner boxes.

  9. #109
    Join Date
    Dec 2006
    Posts
    15
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Thanks Again Jade. You were correct about the banner changes in Admin. Thought I had looked everywhere but apparently not.

    Dan

  10. #110
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    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?
    Attached Images Attached Images  
    Last edited by dharma; 3 Jan 2007 at 08:34 PM.

 

 
Page 11 of 47 FirstFirst ... 91011121321 ... 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

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