Page 4 of 47 FirstFirst ... 2345614 ... LastLast
Results 31 to 40 of 462
  1. #31
    Join Date
    Aug 2006
    Posts
    21
    Plugin Contributions
    0

    Default Re: Simple Zen Template, now in download section...

    At the risk of sounding even dumber than before, can I get some clarification?

    I tried creating a Simple Zen folder under templates and moved the css, button, common and images folder into it. When I go into the ZC admin>tools>templates, I don't see a Simple Zen template option.

    So, where and how should I upload the includes folder? Into store>includes? And again, won't that over-write any existing templates I have? And if I don't want to over-write the existing template, how do I install this?

    Not trying to sound like a dolt, but I'm very confused. Thanks again!

    Updated - Nevermind - I got it - thanks again!!
    Last edited by lynnema; 31 Aug 2006 at 02:01 PM.

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

    Default Re: Simple Zen Template, now in download section...

    Did you also create the simple_zen directory under languages/english and put the revised header.php file in there? It's a pretty important step for this template.
    Kuroi Web Design and Development | Twitter

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

  3. #33
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template, now in download section...

    ok i have a question and i hope this is right. I want to take out the 3 linked images in the header and in it place put shopping cart in header this is the code i have to work with...
    <?php if ($_SESSION['cart']->count_contents() > 0) {
    $products = $_SESSION['cart']->get_products();
    echo '<p><a href="/index.php?main_page=shopping_cart">' . $_SESSION['cart']->count_contents().' Item(s) - Total: £';
    echo $currencies->format($_SESSION['cart']->show_total());
    }

    if ($_SESSION['cart']->count_contents() == 0) {
    $products = $_SESSION['cart']->get_products();
    echo '<p><a href="/index.php?main_page=shopping_cart"> Item(s) £0.00';
    }

    ?></a></p>

    But i have tried twice and it seems to break up in IE. Can someone help me

    Thanks

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

    Default Re: Simple Zen Template, now in download section...

    Quote Originally Posted by shopyoungway
    ok i have a question and i hope this is right. I want to take out the 3 linked images in the header and in it place put shopping cart in header this is the code i have to work with...
    <?php if ($_SESSION['cart']->count_contents() > 0) {
    $products = $_SESSION['cart']->get_products();
    echo '<p><a href="/index.php?main_page=shopping_cart">' . $_SESSION['cart']->count_contents().' Item(s) - Total: £';
    echo $currencies->format($_SESSION['cart']->show_total());
    }

    if ($_SESSION['cart']->count_contents() == 0) {
    $products = $_SESSION['cart']->get_products();
    echo '<p><a href="/index.php?main_page=shopping_cart"> Item(s) £0.00';
    }

    ?></a></p>

    But i have tried twice and it seems to break up in IE. Can someone help me

    Thanks
    Try this instead:
    Code:
           <li><?php if ($_SESSION['cart']->count_contents() > 0) {
    $products = $_SESSION['cart']->get_products();
    echo '<a href="/index.php?main_page=shopping_cart">' . $_SESSION['cart']->count_contents().' Item(s) - Total: £';
    echo $currencies->format($_SESSION['cart']->show_total());
    }
    
    if ($_SESSION['cart']->count_contents() == 0) {
    $products = $_SESSION['cart']->get_products();
    echo '<a href="/index.php?main_page=shopping_cart"> Item(s) £0.00';
    }
    
    ?></a></li>

  5. #35
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

    Default Re: Simple Zen Template, now in download section...

    OK so far i have made it look like this http://www.gorillagear.ca/store/index.php which i'm satisfied with but i'd like http://www.gorillagear.ca/GorillaNuke/ with background images for the borders etc.

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

    Default Re: Simple Zen Template, now in download section...

    Quote Originally Posted by MB1
    OK so far i have made it look like this http://www.gorillagear.ca/store/index.php which i'm satisfied with but i'd like http://www.gorillagear.ca/GorillaNuke/ with background images for the borders etc.
    Oh my, well those are some quite complicated borders. I'm a less is more gal myself , but to do that, you're going to have to go into the includes/templates/YOUR_TEMPLATE/common/tpl_box_default_left.php and tpl_box_default_right.php and start creating a table shell to hold all of those corners. Give them each a specific css tag, then you can go into your css file, and start adding background images. You already have them chopped up, so that's one step down.

    Did you build the sideboxes for the layout you linked? If so, it shouldn't be too bad, but the first step will be going into the two files above, and change the framework for the sideboxes.

    Hope that helps a bit!

    ETA: I would also suggest that you either optimize your images (make medium (_MED) and large ones (_LRG) OR install the ImageHandler2 mod, that will do all that for you. I find your site images take a long time to load.
    Last edited by jettrue; 1 Sep 2006 at 03:18 PM.

  7. #37
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

    Default Re: Simple Zen Template, now in download section...

    that's a wee bit too complicated at the moment how about just a background in the main area that's boxed in and another for the new products area where all the pictures are i tried playing with the style sheet but it didn't work out

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

    Default Re: Simple Zen Template, now in download section...

    Agree with jettrue's comment on image sizes. I took a closer look at one and it was a whopping 100x the file size that I'd expect to see as a thumbnail on your frontpage.

    What you want to do can be done relatively easily with CSS. You've done your work on Simple Zen so stick with that, but look at how the future Zen sidebox borders are constructed (make sure that you look at version 1.2). This approach will work for your more complicated borders too, both sideboxes and center column boxes if you stick to fixed widths (which the nature of your graphics pretty well forces anyway).
    Kuroi Web Design and Development | Twitter

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

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

    Default Re: Simple Zen Template, now in download section...

    Quote Originally Posted by MB1
    that's a wee bit too complicated at the moment how about just a background in the main area that's boxed in and another for the new products area where all the pictures are i tried playing with the style sheet but it didn't work out
    For a background image for the whole boxed in area (exluding the top header area), just go in your css:

    #contentMainWrapper{
    background: url(../images/image_name_here.gif)
    }

    Make sure the image is uploaded to your includes/templates/simple_zen/images folder.

    For the new products area, you'll have to create a new css section:

    .centerBoxContentsNew {
    background: url(../images/image_name_here.gif)
    }

    Let me know how that works for ya!

  10. #40
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

    Default Re: Simple Zen Template, now in download section...

    thankx for the info i'll get to work on it as soon as i have the time. and i'll look into the image size thingy

 

 
Page 4 of 47 FirstFirst ... 2345614 ... 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