Page 36 of 47 FirstFirst ... 26343536373846 ... LastLast
Results 351 to 360 of 462
  1. #351
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Simple Zen Template - Support Thread

    Quote Originally Posted by i10man View Post
    I like this template, but am having a bit of trouble with the graphics not showing up on the Shopping Cart Contents page. Here's the site: http://glass-cleaning-tips.com/

    When you click the "Order Now" link near the bottom, the page that displays is just showing a few of the graphics that are needed to move forward. This site is meant to be very simple and is a work in progress - the look and feel is being worked on.

    Could you point me to what I am missing that is making those graphics not show? I am sure it is something fairly easy. Thank you!!!

    Phil
    Make sure all the files for this template are uploaded into their correct spots. It sounds like you missed some.

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

    Default Re: Simple Zen Template - Support Thread

    Quote Originally Posted by dharma View Post
    I wanted to move the product details list (model etc) on the product info page, up from under the primary image, to join the rest of the product description (to the right of the primary image).

    i have moved the product details block around the page, but it looks like it should be where it is, but this code needs to change to float right or something:

    PHP Code:
    <ul id="productDetailsList" class="floatingBox back"
    I have guessed a few code varations of float right, but the bullet points ride into (too close)to the image, and the text is not in a linear line:

    Model:
    THX
    1138

    instead of

    Model: THX 1138

    Any suggestions? maybe a float right, with a back twist and a margin dohicky?
    Hmm, could I see the link? Also, the "back" portion is what is causing it to float left, you could remove that.

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

    Default Re: Simple Zen Template - Support Thread

    Quote Originally Posted by dharma View Post
    also...I have changed one of the links in the topnav to open in a new window, and don't want it open as a https secure page, when browsing SSL pages in the main window.

    is there a way to tweak this to make it never open as https?

    ex:
    HTML Code:
    <li><a id="cu" href="open-as-non-ssl-page.html" target="_blank"><i>Non SSL page</i></a></li
    maybe a zen_href_link thingy? or a 'NONSSL' doodad?
    That would be a good question for the general forum, I'm not sure how to do that.

  4. #354
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

    Default Re: Simple Zen Template - Support Thread

    I ended up moving the product details block up into the product description and getting rid of the <ul> and <li> and adding a <br />:

    PHP Code:
    <!--eof Add to Cart Box-->
     <!--bof Product description -->
    <?php if ($products_description != '') { ?>
    <div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div>
    <?php ?>
    <!--eof Product description -->
    <!--bof Product details list  -->
    <?php if ( (($flag_show_product_info_model == and $products_model != '') or ($flag_show_product_info_weight == and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == and !empty($manufacturers_name))) ) { ?>
      <?php echo (($flag_show_product_info_model == and $products_model !='') ? '' TEXT_PRODUCT_MODEL $products_model '' '') . "\n"?>
      <?php echo (($flag_show_product_info_weight == and $products_weight !=0) ? '' TEXT_PRODUCT_WEIGHT .  $products_weight TEXT_PRODUCT_WEIGHT_UNIT ''  '') . "\n"?>
      <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' $products_quantity TEXT_PRODUCT_QUANTITY '</li>'  '') . "\n"?>
      <br />
      <?php echo (($flag_show_product_info_manufacturer == and !empty($manufacturers_name)) ? '' TEXT_PRODUCT_MANUFACTURER $manufacturers_name '' '') . "\n"?>
    <br class="clearBoth" />
    <?php
      
    }
    ?>
    <!--eof Product details list -->
    <br class="clearBoth" />
    its kind of ugly, as I do not know how to code, but it displays ok. hope this helps others....

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

    Default Re: Simple Zen Template - Support Thread

    I just noticed the topnav gif header Link "my Account" is non SSL:

    english/header:

    Code:
    <li><a id="ma" href="index.php?main_page=account"><i>My Account</i></a>
    Since the other My account link in the Header is SSL.......Do you know how to make the topnav my account header gif goto the my account page as SSl?

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

    Default Re: Simple Zen Template - Support Thread

    Quote Originally Posted by dharma View Post
    I just noticed the topnav gif header Link "my Account" is non SSL:

    english/header:

    Code:
    <li><a id="ma" href="index.php?main_page=account"><i>My Account</i></a>
    Since the other My account link in the Header is SSL.......Do you know how to make the topnav my account header gif goto the my account page as SSl?
    why not just code the full link, with the https:// before it? But yeah, I should figure that out for the next release.....

  7. #357
    Join Date
    Nov 2006
    Posts
    512
    Plugin Contributions
    0

    Default Re: Simple Zen Template - Support Thread

    why not just code the full link, with the https:// before it?
    I think that IE would shoot a warning (secure and non-secure items) if it was a real world link, no?

    I tried forwarding to an EZ page, no dice... javascript? can't think of anything else...please post if there is a solution...

  8. #358
    Join Date
    Apr 2006
    Posts
    3
    Plugin Contributions
    0

    Default Re: Simple Zen Template - Support Thread

    First my compliments for the simple-zen template!
    I managed to change some colors and made some adjustments for my site. And I have made a new image for the topnav.gif.
    I was wondering if it is possible to have different images for the different lanquages?
    I have one in english and dutch. I tried to do it by making two folders in the CSS folder (english and dutch) and renamed one image in the image-folder and css-file. But this doesn't work.
    Who has an idea for a solution? Thanks in advance.

    Nina

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

    Default Re: Simple Zen Template - Support Thread

    Quote Originally Posted by ninnas View Post
    First my compliments for the simple-zen template!
    I managed to change some colors and made some adjustments for my site. And I have made a new image for the topnav.gif.
    I was wondering if it is possible to have different images for the different lanquages?
    I have one in english and dutch. I tried to do it by making two folders in the CSS folder (english and dutch) and renamed one image in the image-folder and css-file. But this doesn't work.
    Who has an idea for a solution? Thanks in advance.

    Nina
    This would be a good question for the general forum. I'm not experienced in using different stylesheets for different languages. I think there is a way to do that, but you have to name them a certain way.

  10. #360
    Join Date
    Apr 2006
    Posts
    3
    Plugin Contributions
    0

    Default Re: Simple Zen Template - Support Thread

    Thank you for your fast reply!
    I've put your words in the 'search' form and found more info:

    http://www.zen-cart.com/forum/showth...t=68462&page=2

 

 
Page 36 of 47 FirstFirst ... 26343536373846 ... 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