Results 1 to 10 of 177

Hybrid View

  1. #1
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by countrycharm View Post
    Hi Clyde I just updated my other store to zen-cart-v1.3.9f and using your desert noon template. Great template by the way. My question to you is this. On the product info page how do I move the products name, price, model number, and add to cart beside the picture about half way up. Thank you in advance. One more thing on the main page how can I center the about us link
    You'll need to open includes/templates/template_default/templates/product_info_display.php

    you can move things around to get the look you want.

    after making your edits save the file to includes/templates/desert_noon/templates/product_info_display.php

  2. #2
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by clydejones View Post
    You'll need to open includes/templates/template_default/templates/product_info_display.php

    you can move things around to get the look you want.

    after making your edits save the file to includes/templates/desert_noon/templates/product_info_display.php
    Thanks Clyde for the help. I just can not seem to get it like I want it so I will leave it alone. Looks OK to me except the model number. How do I move it above the price and inline. Also how can I move the add to cat box to the left some. Every time I try to move it, it want move for some reason.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #3
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by countrycharm View Post
    Thanks Clyde for the help. I just can not seem to get it like I want it so I will leave it alone. Looks OK to me except the model number. How do I move it above the price and inline. Also how can I move the add to cat box to the left some. Every time I try to move it, it want move for some reason.
    As I said, its a matter of moving sections of code around within the tpl_pproduct_info_display.php file.

    find the following section:

    PHP Code:
    <!--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))) ) { ?>
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == and $products_model !='') ? '<li>' TEXT_PRODUCT_MODEL $products_model '</li>' '') . "\n"?>
      <?php echo (($flag_show_product_info_weight == and $products_weight !=0) ? '<li>' TEXT_PRODUCT_WEIGHT .  $products_weight TEXT_PRODUCT_WEIGHT_UNIT '</li>'  '') . "\n"?>
      <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' $products_quantity TEXT_PRODUCT_QUANTITY '</li>'  '') . "\n"?>
      <?php echo (($flag_show_product_info_manufacturer == and !empty($manufacturers_name)) ? '<li>' TEXT_PRODUCT_MANUFACTURER $manufacturers_name '</li>' '') . "\n"?>
    </ul>
    <br class="clearBoth" />
    <?php
      
    }
    ?>
    <!--eof Product details list -->
    and move it to below this line of code:

    PHP Code:
    <!--eof Product Name--> 
    ----------------

    for the add to cart box, open your stylesheet.css

    find the following section

    #cartAdd {
    float: right;
    text-align: center;
    margin: 1em;
    border: 1px solid #000000;
    padding: 1em;
    }

    make any adjustments you feel necessary.

  4. #4
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by clydejones View Post
    As I said, its a matter of moving sections of code around within the tpl_pproduct_info_display.php file.

    find the following section:

    PHP Code:
    <!--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))) ) { ?>
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == and $products_model !='') ? '<li>' TEXT_PRODUCT_MODEL $products_model '</li>' '') . "\n"?>
      <?php echo (($flag_show_product_info_weight == and $products_weight !=0) ? '<li>' TEXT_PRODUCT_WEIGHT .  $products_weight TEXT_PRODUCT_WEIGHT_UNIT '</li>'  '') . "\n"?>
      <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' $products_quantity TEXT_PRODUCT_QUANTITY '</li>'  '') . "\n"?>
      <?php echo (($flag_show_product_info_manufacturer == and !empty($manufacturers_name)) ? '<li>' TEXT_PRODUCT_MANUFACTURER $manufacturers_name '</li>' '') . "\n"?>
    </ul>
    <br class="clearBoth" />
    <?php
      
    }
    ?>
    <!--eof Product details list -->
    and move it to below this line of code:

    PHP Code:
    <!--eof Product Name--> 
    ----------------

    for the add to cart box, open your stylesheet.css

    find the following section

    #cartAdd {
    float: right;
    text-align: center;
    margin: 1em;
    border: 1px solid #000000;
    padding: 1em;
    }

    make any adjustments you feel necessary.
    Thanks Clyde. I have another question for you. If I want to center everything on my page picture, item name, model number and so on, where is the code in the style sheet to do that. I have been working on this for about an hour now and I just can not seem to be able to find the code to move it. Thank You again for your help.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  5. #5
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by countrycharm View Post
    Thanks Clyde. I have another question for you. If I want to center everything on my page picture, item name, model number and so on, where is the code in the style sheet to do that. I have been working on this for about an hour now and I just can not seem to be able to find the code to move it. Thank You again for your help.
    You could try installing this add-on
    www.zen-cart.com/index.php?main_page=product_contrib_info&cPath=40_62&products_id=482

  6. #6
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by clydejones View Post
    I tried that add on but it mess things up worse. It doesn't shift to the middle. I don't understand whats going on. Take a look here, or Here
    Last edited by countrycharm; 30 Sep 2010 at 05:03 AM.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  7. #7
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Desert Noon Template Support Thread

    Quote Originally Posted by countrycharm View Post
    I tried that add on but it mess things up worse. It doesn't shift to the middle. I don't understand whats going on. Take a look here, or Here
    See your PM

 

 

Similar Threads

  1. BecaBerry Template [Support Thread]
    By brandonturpin in forum Addon Templates
    Replies: 35
    Last Post: 14 Jun 2015, 09:35 AM
  2. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  3. Wallet Template - Support Thread
    By zami in forum Addon Templates
    Replies: 45
    Last Post: 25 Mar 2010, 10:15 PM
  4. Replies: 6
    Last Post: 12 Sep 2009, 09:49 AM
  5. help with custom template desert noon
    By meesh in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 19 Feb 2009, 12:00 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