Announcement

Collapse
No announcement yet.

Fragments in Version 6

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

    Fragments in Version 6

    I'm trying to create a brochure page which is made up of several framents. Is there any way in which you can control how these individual fragments are laid out on the brochure page? Say for example, I wanted four fragments to appear in a column on the left hand side, and four fragments to appear in a column on the right hand side of the brochure page, how would I go about placing the individual fragments?

    As far as I can see individual fragments can only be placed one after the other in a brochure page, using just one tag, NETQUOTEVAR:BROCHUREBODY.

    Any help on this would be appreciated.

    Many Thanks

    Oliver

    #2
    Break each fragment into its associated rows and cells.

    e.g if you want two columns then just use something similar to the following:

    <!-- LeftImage HTML begin -->
    <table>
    <tr>
    <td valign="top" align="center">
    <table border="0" cellspacing="0" cellpadding="0" >
    <tr>
    <td >
    <table border="0" cellspacing="0" cellpadding="2" >
    <tr>
    <td >&nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td valign="top">NETQUOTEVAR:BROCHURE_TEXT</td>
    <td>&nbsp;</td>
    </tr>
    </table>
    </td>
    </tr>
    </table>

    </td>
    <!-- LeftImage HTML end -->


    <!-- Right Image HTML begin -->
    <td valign="top" align="center">
    <table width="" border="0" cellspacing="0" cellpadding="0" >
    <tr>
    <td>
    <table border="0" cellspacing="0" cellpadding="2" >
    <tr>
    <td nbsp;</td>
    <td>&nbsp;</td>
    </tr>
    <tr>
    <td valign="top">NETQUOTEVAR:BROCHURE_TEXT</td>
    <td>&nbsp;</td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    <!-- Right Image HTML end -->

    All that is happening is that a table is being opened on the left which contains fragment 1 and the table is closed on the right containing fragment 2.

    Hope this helps

    Comment

    Working...
    X