osCmax v2.5 User Manual
Results 1 to 2 of 2

Product Images Run off page

This is a discussion on Product Images Run off page within the osCommerce 2.2 Discussion forums, part of the osCommerce 2.2 Forums category; When there are only two images it fits fine. However I've got many categories I need to fit in there ...

      
  1. #1
    New Member
    Join Date
    Oct 2005
    Posts
    12
    Rep Power
    0


    Default Product Images Run off page

    When there are only two images it fits fine.

    However I've got many categories I need to fit in there and they are running off the side of the page.

    Anyone know how I can alter it so the images drop down to the next row?

    Take a peek?
    http://www.belove7.com/epiphanyetc/index.php?cPath=35

  2. #2
    New Member
    Join Date
    Oct 2005
    Posts
    12
    Rep Power
    0


    Default

    Got the answer somewhere else. In case you run into this.

    For the categories at the top of your page you can set the number to display per row in admin - Configuration>>Maximum Values>>Categories To List Per Row - the default is 3

    For your new products module, open /includes/modules/new_products.php in an editor and change:

    CODE
    $col ++;
    if ($col > 2) {
    $col = 0;
    $row ++;
    }
    }


    to:

    CODE
    $col ++;
    if ($col > 1) {
    $col = 0;
    $row ++;
    }
    }


    Matti

    This post has been edited by Johnson: Today, 09:22 AM


    --------------------
    Matti Ressler
    osCommerce, Community Forums Moderator Team

Similar Threads

  1. PRODUCT IMAGES
    By jschafer52 in forum osCmax v2 Customization/Mods
    Replies: 1
    Last Post: 07-11-2006, 05:46 PM
  2. Product detail page as the home/main page???
    By sukarya in forum osCommerce 2.2 Modification Help
    Replies: 1
    Last Post: 02-17-2006, 05:21 AM
  3. Other images for this product box?
    By [wicked] in forum osCMax v2 Features Discussion
    Replies: 1
    Last Post: 08-17-2005, 06:36 PM
  4. Show manufacturer's name on product page, not category page
    By kellbot in forum osCmax v1.7 Discussion
    Replies: 0
    Last Post: 04-25-2005, 04:57 AM
  5. Product images in grid on the front page?
    By nfmg in forum osCmax v1.7 Discussion
    Replies: 4
    Last Post: 03-04-2005, 06:55 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
  •