I have been trying to encorporate the script example in the KB document GEN1013-F Adding an Email Link to Every Page in your Output into my new Flare HTML Help template, and discovered this issue with the last line of the script:
- Code: Select all
document.write ("<a href="+ docfdbk_a + docfdbk_b + docfdbk_c + docfdbk_d + docfdbk_e + docfdbk_f + docfdbk_g + document.title +">Send us feedback!</a>");
This script is included in a paragraph with the font size 8pt. However, the <a> tag in the script wants to use the settings I have for <a> in my style sheet - which is 10pt. So in the finished product, the link that opens the feedback email is 10pt and stands out from surrounding text.
I made a class of <a> called a.script with 8pt font. Then, adding [class="Script"], I changed the script to
- Code: Select all
document.write ("<a href="+ docfdbk_a + docfdbk_b + docfdbk_c + docfdbk_d + docfdbk_e + docfdbk_f + docfdbk_g + document.title +" class="Script">Send us feedback!</a>");
I'm stuck.

Thanks - Helen@Block