Re: [ot]CSS class name in bean:message ???

2005-04-04 Thread Jeff Beal
On Apr 1, 2005 7:16 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Now the Heading gets set just fine with the td.style_external, but when I changed the (note) to span=style_note_internal(note)/span, the note is still bolded. How can I make the style just _not_ bolded essentially overridding

CSS class name in bean:message ???

2005-04-01 Thread Mick.Knutson
Can I add a css class id to a message? -- Thanks... Mick Knutson Systems Developer Business Direct Services, Wells Fargo Bank 333 Market Street, SF, CA 94103 (415) 371-2553 [EMAIL PROTECTED] MAC A0103-223 This message may contain confidential and/or privileged information. If you are

Re: CSS class name in bean:message ???

2005-04-01 Thread James Mitchell
: jmitchtx MSN: [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: user@struts.apache.org Sent: Friday, April 01, 2005 11:52 AM Subject: CSS class name in bean:message ??? Can I add a css class id to a message? -- Thanks... Mick Knutson Systems Developer Business Direct

Re: CSS class name in bean:message ???

2005-04-01 Thread Dave Newton
[EMAIL PROTECTED] wrote: Can I add a css class id to a message? You can wrap it in a div :) bean:message just retrieves values; it doesn't (and shouldn't) know anything about presentation, I'd think. Dave - To unsubscribe,

RE: CSS class name in bean:message ???

2005-04-01 Thread Mick.Knutson
this message. Thank you for your cooperation. -- -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 9:53 AM To: Struts Users Mailing List Subject: Re: CSS class name in bean:message ??? [EMAIL PROTECTED] wrote: Can I add a css class id

Re: CSS class name in bean:message ???

2005-04-01 Thread Frank W. Zammetti
To: Struts Users Mailing List Subject: Re: CSS class name in bean:message ??? [EMAIL PROTECTED] wrote: Can I add a css class id to a message? You can wrap it in a div :) bean:message just retrieves values; it doesn't (and shouldn't) know anything about presentation, I'd think. Dave

Re: CSS class name in bean:message ???

2005-04-01 Thread Dave Newton
[EMAIL PROTECTED] wrote: So what is the difference between div and span? I think spans are more in-line whereas a div is like a layer. Or something. But if you're just wrapping something inside another html chunk a span is probably more appropriate. Bah, presentation-side. Dave

RE: CSS class name in bean:message ???

2005-04-01 Thread Justin Morgan
div is a block element. span is an inline element. (Yes, those are technical terms) -Justin -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 1:09 PM To: Struts Users Mailing List Subject: Re: CSS class name in bean:message ??? [EMAIL

RE: CSS class name in bean:message ???

2005-04-01 Thread Slattery, Tim - BLS
So what is the difference between div and span? Both mark off arbitrary blocks of text. div is like p in that it implies a line break before and after the division. span does not cause a line break, so it can be used in the middle of a line. -- Tim Slattery [EMAIL PROTECTED]

RE: [ot]CSS class name in bean:message ???

2005-04-01 Thread Mick.Knutson
] Sent: Friday, April 01, 2005 10:42 AM To: 'Struts Users Mailing List' Subject: RE: CSS class name in bean:message ??? So what is the difference between div and span? Both mark off arbitrary blocks of text. div is like p in that it implies a line break before and after the division. span does

Re: [ot]CSS class name in bean:message ???

2005-04-01 Thread EugĂȘnio Saulo
List' Subject: RE: CSS class name in bean:message ??? So what is the difference between div and span? Both mark off arbitrary blocks of text. div is like p in that it implies a line break before and after the division. span does not cause a line break, so it can be used in the middle