Got it. Must just be a problem here on my local localhost.
Thanks,
John
Printable View
Got it. Must just be a problem here on my local localhost.
Thanks,
John
I would like to change the positions in the Product Page.
I want to put the Title and Price under neath the Image is that possible?
I thought I had seen a module to do that somewhere but it does not want to come to me where.
Can you help Please?
Thanks
Admin -->Configuration -->Product Listing,
Use the top 7 options as sort orders. 0 = off
Do you mean the product info page (single product) or the product listing page (whole category of products)?
If the info page, you can edit /includes/templates/your_template/templates/tpl_product_info_display.php, and move blocks of code (marked by <!--bof xxxx--> and <!--eof xxxx--> comments) to the order you want them to display.
Fine-tuning that will be done in your stylesheet.
hello, i'm totally new to zen cart and tried to install this mod.
the product listing option in the admin section works, but i get this error on each shop page...
where did i do something wrong?thanks so much
I'm running this mod and have 3 columns set, but I'm having problems with 'spacing' the decription text under the images - there is no 'break' between the end of the second line of item 1 and the start of the second line of item 2, for example.
I've set a further line in the css filewhich has partly done the job, but its still too close between the individual text blocks. Looking at the source code of the page it showsCode:.listingDescription { text-align:left;}
and its that percentage I want to change, down to maybe 30$. But where can I find that to adjust it!!??Code:<div class="centerBoxContentsProducts centeredContent back" style="width:32.5%;">
On the product info page I have a picture of the item, then below it I have the price, description and then two attributes, size and color.
How can I move the size and color attributes drop down to the right of the picture? I know it is in a CSS, just not sure which one and what I would change in it.
Thanks in advanced.
Bryan
Travellers -
/includes/modules/your_template/product_listing.php (the Column Grid version) is where the width of the product display is set. You can find this sectionand change as desired (either reduce the 100 or increase the 0.5). This will not by itself give spacing between the products, but it will allow margins to be safely added in the stylesheet.PHP Code:
// Used for Column Layout (Grid Layout) add on module
$column = 0;
if (PRODUCT_LISTING_LAYOUT_STYLE == 'columns') {
if ($num_products_count < PRODUCT_LISTING_COLUMNS_PER_ROW || PRODUCT_LISTING_COLUMNS_PER_ROW == 0 ) {
$col_width = floor(100/$num_products_count) - 0.5;
} else {
$col_width = floor(100/PRODUCT_LISTING_COLUMNS_PER_ROW) - 0.5;
}
}
// Used for Column Layout (Grid Layout) add on module
Another way to get clearance for the description is to add it to the stylesheet. Giving a margin or padding to the whole product will expand the space occupied and cause layout problems, but margins/padding for internal parts of the product will not do this.Adjust the 0.5em as desired for horizontal clearance.Code:h3.itemTitle {margin: 0 0.5em;}/*add this if the product names need clearance*/
.listingDescription {margin: 0 0.5em;}
Bryan -
Your question relates to the product info page, not the product listing page. Post this in a new thread, with a link to your site, to get proper attention for it.