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