Closed (fixed)
Project:
CAS
Version:
5.x-4.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Anonymous (not verified)
Created:
15 Sep 2009 at 16:08 UTC
Updated:
13 Nov 2015 at 18:49 UTC
Jump to comment: Most recent
Comments
Comment #1
metzlerd commentedCan't really change this. This is part of drupals set_message function call. You might be able to override this behavior for drupal messages with css in your theme however. It will of course affect all messages that drupal sets, not just the login message.
Comment #2
Anonymous (not verified) commentedThanks. Don't think the override will work as the style is hardcoded inline as
its the inline em tags I want to get rid of.
thanks
Comment #3
metzlerd commentedActually you can. Something like:
.messages em {
font-style: normal;
}
Will override the display of em tags to be normal within the div classed as messages. I tested this using firebug and it works. Ahh the power of css.
Dave
Comment #4
Anonymous (not verified) commentedYou are a star - that's it exactly. thanks!