Announcement

Collapse
No announcement yet.

Very tight product layout

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

    Very tight product layout

    Hello all

    How do I create a very tight product layout like this one?

    http://www.es-technologies.com/catalog/43

    I am using the technical theme in V8 for the first time and am getting quite confused by the CSS layout.
    Steve - Fluidfusion

    #2
    well, this looks like a table.

    you'd need to start your layout with a table, then close the layout with tne end of the table.



    Start:
    HTML Code:
    <table>
    <tr><td>col 1 title</td><td>col 2 title</td></tr>
    End:
    HTML Code:
    </table>

    each product will be in a small row. like this:
    HTML Code:
    <tr><td>your product data goes here</td><td>buy button here</td></tr>

    make sure you limit the long description if you use it at all. there are php functions to limit text.

    Comment

    Working...
    X