I don't know if this really qualifies as a bug or not, but some CMS in the theme did cause a problem, and here is my humble suggestion for future Suffusion updates, to repair the problem.
Currently, if a headline in the headline block for the front page is just the right length, passing from hovering over it to not hovering causes it to jitter, alternately taking up one line, then two, very fast. This is because of the built-in 'bounce' effect, where the headline shifts to the left and up by one pixel when hovered over. However, the CMS currently decreases the padding on both the left and the right, so if the headline is just long enough, the two-pixel shift causes it to go from occupying two lines to just one when hovered over, thus causing the unsightly jitter effect.
So, as a temporary fix, I put this in the Custom Includes:
.suf-mag-headline-block li.suf-mag-headline a.tab-current {
padding: 2px 7px 0 9px;
}
That changes it from the regular CMS of:
.suf-mag-headline-block li.suf-mag-headline a.tab-current {
padding: 2px 7px;
}
