Page 1 of 1

Changing the appearance of description headers

Posted: Fri Aug 27, 2004 2:54 pm
by CMS
We want to drop the grey background which appears behind each description header in favour of a white background, and also make the font for the description appear in bold green instead of normal black.

Do we edit this in Norcat Config Advanced, and if so, what lines do we need to change?

Posted: Fri Aug 27, 2004 3:18 pm
by norman
You do this by editing the Actinic Product Templates that Norcat uses. Look in your site folder for:-

Norcat_CompactLine.html
Norcat_CompactLine-NoImage.html
Norcat_ProductLine.html
Norcat_ProductLine-NoImage.html

Edit all 4. Look for the lines:-

<tr bgcolor="#d1dde9">
<td height=24 align="LEFT"> NETQUOTEVAR:TEMPLATEBEGINXML
<a name="NETQUOTEVAR:PRODUCTANCHOR"><span class="actregular">NETQUOTEVAR:PRODUCTNAME</span></a>

and change the #d1dde9 to suit and amend the tags around NETQUOTEVAR:PRODUCTNAME as required. If changing this using CSS you may want to add your own class to actinic.css (again in Site1)

E.g.

<tr>
<td height=24 align="LEFT"> NETQUOTEVAR:TEMPLATEBEGINXML
<a name="NETQUOTEVAR:PRODUCTANCHOR"><span class="cmsboldgreen">NETQUOTEVAR:PRODUCTNAME</span></a>

Norman