PDA

View Full Version : html on popup page


davie_ne1
28-Apr-2003, 06:03 PM
Does anyone know if it is possible to write your own html in each pop-up page.

ie for each product instead on writing a product description in the extended info box I want to write product specific html

NormanRouxel
28-Apr-2003, 08:08 PM
Try using the Actinic "embedded HTML" feature in the extended info text. Just enclose your own code between "!!<" and ">!!" (without the quotes).

Norman

davie_ne1
28-Apr-2003, 09:44 PM
thats seems to have done the job apart from the table command which actinic appears not to like

thanks for your help

Jan
29-Apr-2003, 05:51 AM
The table command should work - I've use it here (http://www.mole-end.biz/acatalog/Quick_Ordering.html)

Regards

davie_ne1
29-Apr-2003, 08:01 AM
the html that I used is the following:

<TABLE cellPadding=5 width="100%" border=6>
<TR>
<TD width="28%" bgColor=#bbf1ff height=42><FONT size=4><STRONG>ITEM</STRONG></FONT></TD>
<TD width="72%" bgColor=#bbf1ff>ONIMAX STV 2818 (BLACK)</TD>
</TR>
<TR>
<TD><FONT size=4><STRONG>DESCRIPTION</STRONG></FONT></TD>
<TD>28" VIRTUAL DOLBY PROLOGIC WIDESCREEN TV </TD>
</TR>
<TR>
<TD bgColor=#bbf1ff><FONT size=4><STRONG>COLOUR:</STRONG></FONT></TD>
<TD bgColor=#bbf1ff>SPARKLE BLACK</TD>
</TR>
<TR>
<TD><FONT size=4><STRONG>RETAIL PRICE</STRONG></FONT></TD>
<TD><STRONG><FONT color=#ff0000 size=5>£327.88</FONT></STRONG></TD>
</TR>
<TR>
<TD bgColor=#bbf1ff><FONT size=4><STRONG>SPECIFICATIONS</STRONG></FONT></TD>
<TD bgColor=#bbf1ff> <UL>
<LI>16:9 Widescreen
<LI>70cm/66cm visible
<LI>28" Tube
<LI>Nicam stereo
<LI>Virtual dolby surround sound
<LI>2 X 20 watt pmp power output
<LI>Child lock
<LI>2 scart sockets
<LI>99 channel memory
<LI>Teletext </LI>
</UL></TD>
</TR>
<TR>
<TD bgcolor="#FFFFFF"><FONT size=4><STRONG>PACKAGE CONTENCE</STRONG></FONT></TD>
<TD bgcolor="#FFFFFF"> <UL>
<LI>HANDSET
<LI>MANUAL </LI>
</UL></TD>
</TR>
<TR>
<TD bgcolor="#bbf1ff"><FONT size=4><STRONG>CONDITION</STRONG></FONT></TD>
<TD bgcolor="#bbf1ff">AS NEW &amp; BOXED</TD>
</TR>
<TR>
<TD><FONT size=4><STRONG>RESERVE PRICE</STRONG></FONT></TD>
<TD>&pound;130</TD>
</TR>
</TABLE>


and i put !! in front and !! at end

Jan
29-Apr-2003, 08:09 AM
You need to put !!< and >!! around it rather than !! and !! - i have just tried that HTML in a test product here and worked.

Regards

chrisbrown
29-Apr-2003, 08:23 AM
Your <LI> tags are not properly terminated. Each <LI> should be terminated with a </LI> tag; not just the last one in a list.

This probably won't affect whether or not the lists display properly in IE but it could be an issue for other browsers.

davie_ne1
29-Apr-2003, 09:53 PM
thanks for your help

the html code was created in dreaweaver mx so blame them for the <LI> tag mistake