Thanks Deano,
Deleting the cache file didnt do it, but I will look at the database entry.
While on that, where can I find the CSS for the font size in the notification popup??? Font is way too big. I used the Firefox Inspect Element and it said it was "spy_events_wrapper_menu_member" but that doesnt seem to be in any of the CSS.
No the font size is not specified there. In that case it falls back to the body font which is 11px.
11px is not very big.
But you can over ride the font size by specifying it in. modules/boonex/spy/templates/base/css/spy.css
div.spy_events_wrapper_menu_member {
}
Add a font tag. like so.
div.spy_events_wrapper_menu_member {
margin:0 0 10px;
font-size:10px;
}