brianmaierjr / long-haul

A minimal, type-focused Jekyll theme.
http://brianmaierjr.com/long-haul
MIT License
674 stars 776 forks source link

.post figure img tag needs to center #7

Closed aav7fl closed 9 years ago

aav7fl commented 9 years ago

In css/style.css line~1157 Tag: .post figure img If the image in a figure is not as wide as the surrounding divs (for example, if the image is 580 pixels wide and is a figure) it will become left justified. Unless the following is added to the css style.css sheet in the ".post figure img" tag.

display: block;
margin-left: auto;
margin-right: auto;