Announcement

Collapse
No announcement yet.

image placing

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    image placing

    I need to change the layout of product images to left to right rather than from top to bottom.

    Any ideas

    #2
    search the forum for display products in colums
    Owner of a broken heart

    Comment


      #3
      By default, Act_ProductBody.html sets up a 500 pixel-wide table with three columns that all the products are laid out within. Each Product Layout template (e.g. Act_ProductLine.html) then inserts the rows within that table.

      In order to lay them out left to right, you just need to have one row, containing multiple cells. Therefore, Act_ProductBody.html would look like this...


      <TABLE BORDER="0" CELLPADDING="10" CELLSPACING="0" ALIGN="CENTER">
      <tr>
      NETQUOTEVAR:PRODUCTBULK
      </tr>
      </TABLE>

      And then each product layout template would look like this...

      NETQUOTEVAR:ENDSEPARATOR
      NETQUOTEVAR:PRODUCTFORMBEGIN
      <td>

      product code

      </td>
      NETQUOTEVAR:PRODUCTFORMEND
      NETQUOTEVAR:NEXT

      Hope that gives you a place to start.

      Comment


        #4
        Chris

        Setting up the products so that the catalog shows 2 products per row is something I am playing with and I am usein Norman's code to do this.

        However, there is a lot of white space between the left hand side of the web page and the left most product. How do I shift where the columns for the two products actually start from?
        Thanks in advance.

        Jonathan Moss
        www.memixdirect.com

        Comment


          #5
          Try removing the ALIGN="CENTER" from the line that reads

          <TABLE BORDER="0" CELLPADDING="10" CELLSPACING="0" ALIGN="CENTER">

          in Act_ProductBody.html

          Comment

          Working...
          X