PDA

View Full Version : Section Name into 2 rows


June
04-Apr-2005, 10:34 AM
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

Nadeem
06-Apr-2005, 08:42 AM
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


<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