Page 23 of 33 FirstFirst ... 132122232425 ... LastLast
Results 221 to 230 of 321
  1. #221
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by clydejones View Post
    tell me why the categories side box starts off in the middle of the page when you first arrive at the site.
    Find the following declaration in the stylesheet.css and make the highlighted change to see if that corrects the problem.
    .centerColumn {
    padding: 0.8em;
    position: relative;
    }

    Also when you add an item to the cart if you look a the side box for the shopping cart the price is way to the right and not in the middle like it should be.
    The rustic template does not modify the shopping cart sidebox.

    One more thing when you add an item to the cart and go view your cart at the top is their a way I can get the price to line up so it is in line with unit and total.
    Find the following declarations in the stylesheet.css and adjust the margin and padding settings.
    .cartUnitDisplay
    .cartTotalDisplay

    How do I move the model number up under the price.

    open includes/templates/template_default/templates/tpl_product_info_display.php

    find and move this entire block of code under the the price block.

    Code:
    <!--bof Product details list  -->
    <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?>
      <?php echo (($flag_show_product_info_weight == 1 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 == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
    </ul>
    <br class="clearBoth" />
    <?php
      }
    ?>
    <!--eof Product details list -->
    make sure to save the edited file to includes/templates/rustic/templates/tpl_product_info_display.php


    I still have some validation errors but I don't know where to look to fix them.

    One of the problems is that
    includes/templates/rustic/common/html_header.php
    is missing a closing </head> tag.

    Clyde everything has worked out fine except this here. The category side box still is hesitating when you first enter the site. What you ask me to do did not work.
    .centerColumn {
    padding: 0.8em;
    position: relative;
    }

    When I turn off the minify script I get a pass validation now thanks to you. Last thing is I need to get the model number to center under the price. Thank you again for all you help. I guess if it has to stay like it is, it really isn't hurting anything
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by countrycharm View Post
    Clyde everything has worked out fine except this here. The category side box still is hesitating when you first enter the site. What you ask me to do did not work.
    .centerColumn {
    padding: 0.8em;
    position: relative;
    }

    When I turn off the minify script I get a pass validation now thanks to you. Last thing is I need to get the model number to center under the price. Thank you again for all you help. I guess if it has to stay like it is, it really isn't hurting anything
    You might want to try adding a width to this and see if that helps.

    .centerColumn {
    padding: 0.8em;
    position: relative;
    width:824px;
    }

    open includes/templates/rustic/templates/tpl_product_info_display.php
    Find the following and remove the highlighted portion and see if that helps.
    Code:
    <!--bof Product details list  -->
    <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?>
      <?php echo (($flag_show_product_info_weight == 1 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 == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
    </ul>
    <br class="clearBoth" />
    <?php
      }
    ?>
    <!--eof Product details list -->

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

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by clydejones View Post
    You might want to try adding a width to this and see if that helps.

    .centerColumn {
    padding: 0.8em;
    position: relative;
    width:824px;
    }

    open includes/templates/rustic/templates/tpl_product_info_display.php
    Find the following and remove the highlighted portion and see if that helps.
    Code:
    <!--bof Product details list  -->
    <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?>
      <?php echo (($flag_show_product_info_weight == 1 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 == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
    </ul>
    <br class="clearBoth" />
    <?php
      }
    ?>
    <!--eof Product details list -->
    The first problems is still there. The second problem model number move to the right even father.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Rustic Template Support Thread

    The first problems is still there. The second problem model number move to the right even father.
    This is what I did Clyde. I took your advise above but made changes like this and it move it under the price. The change I made is in red
    <!--bof Product details list -->
    <?php if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
    <ul id="productDetailsList" class="back">
    <?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li>' . TEXT_PRODUCT_MODEL . $products_model . '</li>' : '') . "\n"; ?>
    <?php echo (($flag_show_product_info_weight == 1 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 == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
    </ul>
    <br class="clearBoth" />
    <?php
    }
    ?>
    <!--eof Product details list -->
    Do you think this will cause any problems down the road?
    Last edited by countrycharm; 30 Mar 2010 at 10:05 PM.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by countrycharm View Post
    The first problems is still there. The second problem model number move to the right even father.
    This is what I did Clyde. I took your advise above but made changes like this and it move it under the price. The change I made is in red
    Do you think this will cause any problems down the road?
    Even better you can leave the class="floatingBox" and just remove the back from it.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Rustic Template Support Thread

    Clyde I know you are getting tired of answering my petty question, but I have one more for you. If you look at the bottom of my template the bottom portion is missing the gray part. I don't know where it went....lol Thank you for all your help.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by countrycharm View Post
    Clyde I know you are getting tired of answering my petty question, but I have one more for you. If you look at the bottom of my template the bottom portion is missing the gray part. I don't know where it went....lol Thank you for all your help.
    With that minify thingy, All I can see is a single compacted stylesheet so I can't really tell whether the problem might be in the stylesheet.css or the footer_menu.css

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

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by clydejones View Post
    With that minify thingy, All I can see is a single compacted stylesheet so I can't really tell whether the problem might be in the stylesheet.css or the footer_menu.css
    Hi Clyde I played around with it some more and found out when I deleted the footer menu stylesheet_footer_menu and replaced the original tpl_footer.php the bottom now looks like it suppose to, so the stylesheet_footer_menu and the tpl_footer.php from the footer menu is messing it up. Any suggestion on how to fix it.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

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

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by countrycharm View Post
    Hi Clyde I played around with it some more and found out when I deleted the footer menu stylesheet_footer_menu and replaced the original tpl_footer.php the bottom now looks like it suppose to, so the stylesheet_footer_menu and the tpl_footer.php from the footer menu is messing it up. Any suggestion on how to fix it.
    The gray strip is actually where the bottom menu is supposed to go ( That is navSuppWrapper and navSupp )

    If you want to use the footer menu then you'll loose the gray strip.

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

    Default Re: Rustic Template Support Thread

    Quote Originally Posted by clydejones View Post
    The gray strip is actually where the bottom menu is supposed to go ( That is navSuppWrapper and navSupp )

    If you want to use the footer menu then you'll loose the gray strip.
    Thanks for the quick apply, so you saying their is nothing I can do to fix it if I want to use the footer menu. Well I kind of like the gray strip too...lol. I would like it better if I could use one like I have at the top of the site. Thank you again Clyde.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

 

 
Page 23 of 33 FirstFirst ... 132122232425 ... LastLast

Similar Threads

  1. v155 Clone a Template [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 107
    Last Post: 11 Nov 2024, 08:28 PM
  2. v150 aBagon Template Support Thread
    By VJef in forum Addon Templates
    Replies: 54
    Last Post: 5 Sep 2020, 08:44 PM
  3. TB Sempre Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 48
    Last Post: 19 Mar 2015, 06:33 PM
  4. Scuro Template Support Thread
    By brandonturpin in forum Addon Templates
    Replies: 11
    Last Post: 12 Mar 2015, 09:45 PM
  5. DigitalShop Template Support Thread
    By blingthemes in forum Addon Templates
    Replies: 19
    Last Post: 9 Mar 2011, 07:49 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