Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Not sure where to put a CSS for a link in my XML

Status
Not open for further replies.

BUSHhtr

Programmer
Dec 9, 2004
102
Hey All
I need to style the links in my XML file I am not sure where to put it - can you help?

the style is: class="nav3" I want to style the yahoo.com URL (Tester)- I was told it goes in the CDATA

Here's the Xml

<Q ID="1" TEXT="Choose the state you live in">
<Q ANS="Washington" ID="1.A" TEXT="Choose the type of courses you want.">
<Q ANS="Salesperson" ID="1.A.1" TEXT="Choose the option you want:">
<Q ANS="required WA Fundamentals" ID="1.A.1.A" TEXT="LINK">
<LINKBODY><![CDATA[<a href=" License Training</a>]]></LINKBODY>
</Q>

Thanks
R
 
Would you care to share from what you figured out so that other might benefit?

Clive
Runner_1Revised.gif

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"To err is human, but to really foul things up you need a computer." (Paul Ehrlich)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To get the best answers from this forum see: faq102-5096
 
Sure:
Below "topnav" is the CSS

<Q ANS="Continuing Education" ID="1.A.3" TEXT="Choose the continuing education option you want:">
<Q ANS="Requirements for first renewal" ID="1.A.3.A" TEXT="LINK">
<LINKBODY><![CDATA[Sign up for ALL of the courses required for your first salesperson's license renewal (63 hours consisting of Real Estate Practices, Core Curriculum, and an elective). <br><img src="../../images/Tree_StepOarrow.gif" width="16" height="16"><a href="../../asp/license_training/wa_license_training.asp" id="topnav" >please visit: whatever link here not sure someone help me</a>]]></LINKBODY>
</Q>
<Q ANS="30-hour renewal requirements" ID="1.A.3.B" TEXT="LINK">
<LINKBODY><![CDATA[Choose from a variety of courses that will meet your education requirements for license renewal.<br><img src="../../images/Tree_StepOarrow.gif" width="16" height="16"><a href="../../asp/license_training/wa_license_training.asp" id="topnav" >please visit: whatever link here not sure someone help me</a>]]></LINKBODY>
</Q>
</Q>
 
Thanks for sharing.

Clive
Runner_1Revised.gif

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"To err is human, but to really foul things up you need a computer." (Paul Ehrlich)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To get the best answers from this forum see: faq102-5096
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top