Announcement

Collapse
No announcement yet.

positioning

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

    positioning

    Hello
    Ive been trying to move the add to cart button up the page because it is currently at the bottom of the page, how can i do this?


    Best wishes
    Carl


    http://www.microphoto.co.uk/acatalog/lifestyle1.html

    #2
    positioning (2)

    The add to cart button seems to shoot off to the right? how do i align it undernieth the dicription?



    thanks

    Comment


      #3
      Your problem is that the image is so large, it also stretches the size of the two cells next to it that contain the name, price and add to cart button.

      You just need to do a template change.

      Go to 'Design | Options | Layouts' and click 'Edit' next to the 'Default Product Layout' field (assuming you are using the same product layout template for everything).

      Look for these lines...
      Code:
          </td>
        </tr>
        <tr>
          <td align="LEFT" colspan="2">
      and change them to read...
      Code:
          </td>
          <td align="LEFT" colspan="2" rowspan="2">
      This will put the name, price and add to cart button all into one cell.

      Comment

      Working...
      X