Posted by rf on 12/04/07 07:57
"jodleren" <sonnich@hot.ee> wrote in message
news:fa39f645-1b00-4352-9836-30d934296655@y43g2000hsy.googlegroups.com...
> Hello!
>
> I dont know much about CSS, but in order to get the same colours all
> the time, I try
>
> message_ok { color: #ff0000; }
> message_fail { color: #008000; }
As dorayme says,
..message
> Then
> <font class="message_ok">Success!<font>
That last should surely be </font>
Why are you using the deprecated font element?
<p class="message_ok">Success!</p>
or even
<span class="message_ok">Success!</span>
I would think red for the fail and green for success though.
--
Richard.
Navigation:
[Reply to this message]
|