Inline-Table under TwentyTwelve not working

It’s because the TwentyTwelve theme has “clear: both;” set on H3 tags, which messes up the layout.

Try adding this CSS:

#authorlist h3 {
    clear: none !important;
}