[Seaside] style: not supported for Canvas' version of (html label)?

Damien Cassou damien.cassou at laposte.net
Wed Jul 26 06:37:04 UTC 2006


Rick Flower wrote:
> I've been trying to figure out why I can't get my style="..." tags on 
> the following code:
> 
> (html label) for: 'sAddress';
>              with: 'Address :';
>              style: 'font-size: large; color: #ff0000'.


#with: should *always* be the last message.

Do this instead:

(html label)
     for: 'sAddress';
     style: 'font-size: large; color: #ff0000';
     with: 'Address :';


Have a look at this post:
http://lists.squeakfoundation.org/pipermail/seaside/2005-June/005260.html



Bye


More information about the Seaside mailing list