Hey,
I think your browser is the problem. Generate absolute css link that help
<% String url = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() ; %>
<link rel="stylesheet" type="text/css" href="<%=url%>/css/nrd.css" />
Or a relative link, which might get some complaints from the browser (my Dreamweaver always complains if the relative path goes outside some scope). The original poster has failed to give us an important clue. How is XHTML file getting generated? To what URI it responds?
That URI is what browser sees and a LINK's "href" is relative to that base.
So if you have an URI: http://server.domain.com/nrd/mypath/file.xhtml, which gets mapped via "Controller" to XSLT processing engine and generates a XHTML document in response, the the "href" of "<link ...>" should be "../css/nrd.css".
Nix.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
