Results 1 to 10 of 34

Threaded View

  1. #18
    Join Date
    Jul 2008
    Posts
    362
    Plugin Contributions
    0

    Default Re: Grid Layout Assistance Needed

    Quote Originally Posted by gjh42 View Post
    In your Column Grid version of /includes/modules/your_template/product_listing.php, find this section:
    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 == ) {
          
    $col_width floor(100/$num_products_count) - 0.5;
        } else {
          
    $col_width floor(100/PRODUCT_LISTING_COLUMNS_PER_ROW) - 0.5;
        }
      } 
    and change both instances of
    floor(100/...) - 0.5
    to
    floor(100/...) - 1.5
    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 == ) {
          
    $col_width floor(100/$num_products_count) - 1.5;
        } else {
          
    $col_width floor(100/PRODUCT_LISTING_COLUMNS_PER_ROW) - 1.5;
        }
      } 
    Adjust the 1.5 as required to work with the margin you want.

    There are several ways you can tweak this calculation; experiment if you wish once you understand the logic.
    Thanks for the advise can i just ask what exactly does the above do? I have been playing around with it for the past hour and i have not seen any changes :S

    Also i have any question if you have a look at the picture a have attached of the new products you will see that they dont size properly how can i get them to stay the same size all the time evenly spread vertically and horizontally like the products in my categories and dealsdirect?
    Attached Images Attached Images  

 

 

Similar Threads

  1. Replies: 5
    Last Post: 17 Feb 2010, 05:13 PM
  2. Banner Assistance Needed...please!
    By Hamilbone13 in forum Basic Configuration
    Replies: 4
    Last Post: 2 Jun 2009, 11:50 AM
  3. urgent assistance needed
    By lucianman in forum General Questions
    Replies: 5
    Last Post: 17 Mar 2008, 01:35 AM
  4. Shipping Configuration Assistance Needed
    By MagicMan in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 18 Dec 2007, 01:49 PM
  5. Layout Spacing Help Needed, Grid Mod
    By Erilyn in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 3 Sep 2007, 11:30 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