RE: WebGroups css

2004-01-27 Thread Andrew Hill
Try using an html:base tag in your jsp. (See the docs for details , I forget the syntax) -Original Message- From: Manuel Lenz [mailto:[EMAIL PROTECTED] Sent: Tuesday, 27 January 2004 16:15 To: Struts Users Mailing List Subject: WebGroups css Hi you, I do have a silly problem with

Re: WebGroups css

2004-01-27 Thread James Mitchell
I've found this to be the cleanest way (aside from using a custom tag): head ... ... style type=text/css media=screen @import url(html:rewrite page=/stylesheets/style.css /); /style /head The benefits here are: * The URL is relative to the root of the server. An application named

Re: WebGroups css

2004-01-27 Thread Ivan
The best choice is to use html:rewrite :) i m with james - Original Message - From: James Mitchell [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 1:06 PM Subject: Re: WebGroups css I've found this to be the cleanest way (aside from

Re: WebGroups css

2004-01-27 Thread Michael McGrady
I upload all resources (CSS, GIFs, JPEGs, SWFs, etc.) with an action class to avoid all these maddening URL problems caused by the differing perspectives of the client and server. If you get away from the URL solution, and use the .do solution, then URLs are no longer an issue. If you look