Can’t center post thumbnail with bootstrap [closed]

The image is probably not display:block (they are inline by default), and so using margin: 0 auto won’t do anything.

Try either adding text-align:center to your .col-centered, or setting your image tag to display:block (with margin: 0 auto).

Best I can do without seeing more of the surrounding styles.