CODE IN JSP THAT DYNAMICALLY PRINTS SEARCH RESULTS THAT I WOULD LIKE TO HAVE A DIFFERENT FORMAT:
Code:
<hx:outputLinkEx styleClass="outputLinkEx" id="formPdfLink"
onclick="return openPDFWord(this, '#{varsearchResults.targetURLForPDF}');"
value="#{varsearchResults.pdfURL}">
<h:outputText styleClass="outputText" id="text7"
value="#{varsearchResults.formIdAndEditionDate}"
escape="false"></h:outputText>
</hx:outputLinkEx>
CODE IN CSS THAT DEFINES LINKS:
Code:
a:link {color:#52658C;}
a:visited {color:#52658C;}
a:hover {color:#CC0000;}
a:active {color:#52658C;}
I would like to have the links printed from the code above to show when they have been visited. The PDF's open in a new window, does this mean the code would have to be executed on an onclick?
Stuck, I tried messing with the code:
<h

utputText style="color:red;"
this makes just those links red. I tried vlink=#CC0000 which didn't work
Any help would be greatly appreciated.. I tried 3 forums to no avail
Regards,
Will