Re: what is html:link equivelant

2002-03-22 Thread Gernot Koller
Just leave your link href=http://localhost:8080/express/billing.css; rel=stylesheet tag as it is ! The html:link tag is for generating a href=http://some.url.com;foobar/a tags... cheers, gernot. 22.03.2002 18:56:34, [EMAIL PROTECTED] wrote: This is tricker than I thought: What is the

Re: what is html:link equivelant

2002-03-22 Thread Eddie Bush
I personally just use the old HTML tag. I use a relative path though - eg. /express/billing.css instead of http...billing.css. ... works fine for me =) HTH, Eddie - Original Message - From: [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, March 22, 2002

Re: what is html:link equivelant

2002-03-22 Thread theron . kousek
] cc: 03/22/02 Subject: Re: what is html:link equivelant 11:43 AM

Re: what is html:link equivelant

2002-03-22 Thread Eddie Bush
methods, but without the CSS file. HTH, Eddie - Original Message - From: [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, March 22, 2002 2:12 PM Subject: Re: what is html:link equivelant thanks... But for my next question though

Re: what is html:link equivelant

2002-03-22 Thread Gernot Koller
Well, you can specify the style, id, and class attributes with these properties. html:link href=http://some.url.com; style=color:green styleId=mylink styleClass=myStyle should result in something like: a href=http://some.url.com; style=color:green id=mylink class=myStyle you're welcome,