Hi
Bit of a newbie question, but where is the text on the very first page that starts with
Congratulations! You have successfully
and then the following image that starts with 'Have you got yours
I think Im having a bad day!
Hi
Bit of a newbie question, but where is the text on the very first page that starts with
Congratulations! You have successfully
and then the following image that starts with 'Have you got yours
I think Im having a bad day!
Going to try the original stylesheet in a little while, in the mean time with the nav links along the top, how can I get them to align to the left. I tried the align left in the css but it only shifts them over towards the left a little bit.
I'll let you know about the stylesheet in a little while.
Thanks
Pete
FORUM:
# a public meeting or assembly for open discussion
#An online discussion group, where participants with common interests can exchange open messages.
# a public facility to meet for open discussion
Hi;
I am trying to increase the space between "Description" "Model" "Short Desc" and "Price" (data, not the headings) when I display Categories. I looked in the css, but was only able to make the "description" left justified. Is it possible to specified the max. width for the description in order to give more room for the Model, Short Desc. etc?
After a day of trying to work with Short Description add-on, I realized that it does not work with this template, but I still like to use it so I am trying to work around it.
Tx
one more question..
I would like to include * Short name: XXXX in between Model & Manufacturer
* Model: 12345
* Short name: XXXX
* Manufactured by: ABC
but after few attempts, I am no closer. I know it has to come inside the following:
<!--bof Product details list Manufacturer for me -->
<?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">
<?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>
<?php
}
?>
<!--eof Product details list -->
Any assistance will be greatly appreciated!
There's no reason for short description not to work on this template. Once you have all the other files in place, simply paste this where you want it to go:
<?php
if (PRODUCT_INFO_SHORT_DESC == 1) {
echo '<li>' . $products_short_desc . '</li>';
}
?>
I'd paste it right before this chunk:
Code:<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li>' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '</li>' : '') . "\n"; ?>
Since I am having difficulties with Short Desc., the test site on ISP does not have it yet. But even when you look at:
http://store.annron.com/index.php?ma...=index&cPath=1
there is not much space between the long desc. and the Model.
I just noticed that that left justify I did justifies all data (including the price). How can I left justify ONLY the long desc.?
This works, all it needs is a ": "
* Sub_Category: Magic Mazes
* Model: MZ500B
* Manufactured by: Lee Publication
<?php
if (PRODUCT_INFO_SHORT_DESC == 1) {
echo '<li>' . TABLE_HEADING_SHORT_DESC . $products_short_desc . '</li>' ;
}
?>
but when I try to include it, I don't get any display at all, but I'll keep trying.
Thanks!
Bookmarks