Did you do much customization to the CSS?
I suggest you tick the option to restore the default styles. Then you can add in your CSS to hide the category key:
.cat-key { display: none; }
I had not done any customizing to the CSS. However, the “Custom CSS styles” box under Options contained a lot of code (as it did in previous versions), which disappeared when I ticked the box to reset to default – now the font on my Calendar and popups is much smaller:
[Large code excerpt removed by moderator per forum rules. Please use the pastebin for all large code excerpts. It works better anyway.]
Other than Category Key, I have done no customizing of the CSS. However, the Custom CSS styles box under “Options” contained a lot of code which can be viewed here: http://www.stbedesantafe.org/?page_id=2189
The code in that box existed in all versions of Spiffy Calendar; I presumed it was the default CSS sytle. That code disappeared when I ticked the box to return to default. Everything is back to normal now, but the font is much smaller, although a comparison of the old default-CSS to the new does not seem to show a difference in font-size.
The default styles have been moved to always load before the custom styles. I made this change so that I could add new default styles freely in the future. You can still add custom CSS, only the CSS that YOU add will appear in the box on the Options page.
Your old styles do show a larger font in use. You can bump up the font size easily with something like this:
.spiffy.calendar-table {
font-size: 1.1em;
}
1.1em didn’t seem to change anything. I tried 1.4em and that looks like what I used to have.
Is there a way to widen the hover-over popup box?
You can modify the popup width by targeting the following in your custom CSS:
.calnk a:hover div {
width: 150px;
}