Announcement

Collapse
No announcement yet.

brochure fragment title to span width of image and description?

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

    brochure fragment title to span width of image and description?

    Is there a way to get the brouchure fragment title to span the width of the image AND the description?? found a way to do with product titles but is there a way to do with briuchure titles. please help

    #2
    Here's the usual Image to left of text and title Fragment layout
    Code:
    <!-- LeftImageAndTitle HTML begin -->
    <br>
    <br>
    <table border="0" width="100%" cellpadding="5" cellspacing="1">
      <tr> 
        <td valign="top" align="left" width="30%">NETQUOTEVAR:BROCHURE_IMAGE</td>
        <td valign="top">
          <h3>NETQUOTEVAR:BROCHURE_TITLE</h3>
          NETQUOTEVAR:BROCHURE_TEXT</td>
      </tr>
    </table>
    
    <!-- LeftImageAndTitle HTML end -->
    And here's it is with the code rearranged to put the title across the top
    Code:
    <!-- TitleAboveLeftImage HTML begin -->
    <br>
    <br>
    <table border="0" width="100%" cellpadding="5" cellspacing="1">
      <tr> 
        <td colspan=2><h3>NETQUOTEVAR:BROCHURE_TITLE</h3></td>
      </tr>
      <tr>
        <td valign="top" align="left" width="30%">NETQUOTEVAR:BROCHURE_IMAGE</td>
        <td valign="top">
          NETQUOTEVAR:BROCHURE_TEXT</td>
      </tr>
    </table>
    
    <!-- TitleAboveLeftImage HTML end -->
    So save the above code as a new Fragment Template and use that where needed.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment

    Working...
    X