Announcement

Collapse
No announcement yet.

Section Name into 2 rows

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

    Section Name into 2 rows

    Hi,

    Can anyone tell me if I can insert section text on 2 rows?

    Example - I want to put - "printer spare parts" as a section

    Then "choose your printer model from the list below" - under that heading

    With a list of all the printer sub-sections below

    This would be a neater way than putting the whole text on one line, I think

    "printer spare parts- choose your printer model" - (not enough space for the whole thing!)

    Can I amend the SectionLine template to accommodate this??

    Thanks

    #2
    Hi June,

    Can anyone tell me if I can insert section text on 2 rows?
    You can have a section name in one row, and the section description in another. This can be done.
    The following html code has a table with 3 rows

    HTML Code:
    <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="10">
      <TR> 
        <TD ALIGN="LEFT" VALIGN="MIDDLE"> 
          <div align="center"><a href="NETQUOTEVAR:SECTIONLINK">NETQUOTEVAR:SECTIONIMAGE</a><br>
          </div>
        </TD>
      </TR>
      <TR> 
        <TD ALIGN="LEFT" VALIGN="MIDDLE"> 
          <div align="center"><a href="NETQUOTEVAR:SECTIONLINK"><b>NETQUOTEVAR:SECTIONNAME</b></a> 
          </div>
        </TD>
      </TR>
      <TR> 
        <TD ALIGN="LEFT" VALIGN="MIDDLE"> 
          <div align="center"><span class="actxsmall">NETQUOTEVAR:SECTIONTEXT</span></div>
        </TD>
      </TR>
    </TABLE>
    So the Image is along the top, the section name is below the image, then the section description is below the section name. This might help you.

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment

    Working...
    X