Announcement

Collapse
No announcement yet.

Text & Title template

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

    Text & Title template

    Hi guys

    This should be a simple one.

    I just want to alter the Act_TextAndTitle.html so that the Title is centered and the Text is left aligned. When I try the Title moves below the text????

    This is the html.

    <tr>
    <td colspan="3" valign="top">

    NETQUOTEVAR:FRAGMENTANCHOR
    <table border="0" width="100%" cellspacing="5" cellpadding="1">
    <tr>
    <td width="100%">
    <h3>NETQUOTEVAR:BROCHURE_TITLE</h3>
    NETQUOTEVAR:BROCHURE_TEXT</td>
    </tr>
    </table>

    </td>
    </tr>

    Thanks

    Joe
    www.inbrass.co.uk

    #2
    Code:
    <tr>
    <td colspan="3" valign="top">
    
    NETQUOTEVAR:FRAGMENTANCHOR
    <table border="0" width="100%" cellspacing="5" cellpadding="1">
    <tr><th align="center">NETQUOTEVAR:BROCHURE_TITLE</th></tr>
    <tr><td width="100%" align="left">
    NETQUOTEVAR:BROCHURE_TEXT</td>
    </tr>
    </table>
    
    </td>
    </tr>
    is one solution
    Bill
    www.egyptianwonders.co.uk
    Text directoryWorldwide Actinic(TM) shops
    BC Ness Solutions Support services, custom software
    Registered Microsoft™ Partner (ISV)
    VoIP UK: 0131 208 0605
    Located: Alexandria, EGYPT

    Comment


      #3
      Thanks

      joe

      Comment

      Working...
      X