You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: theme-setup/index.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -229,6 +229,13 @@ image:
229
229
creditlink:http://mademistakes.com #url to their site or licensing
230
230
{% endhighlight %}
231
231
232
+
By default the`<div>` containing feature images is set to have a minimum height of 400px with CSS. Anything taller is hidden with an`overflow: hidden` declaration. You can customize the height of the homepage feature image and those appearing on posts/pages by modifying the following variables in`/_sass/_variables.scss`.
233
+
234
+
{% highlight sass %}
235
+
$feature-image-height: 400px; // min 150px recommended
236
+
$front-page-feature-image-height: 400px; // min 150px recommended
237
+
{% endhighlight %}
238
+
232
239
####Post/Page Thumbnails for OG and Twitter Cards
233
240
234
241
Post and page thumbnails work the same way. These are used by[Open Graph](https://developers.facebook.com/docs/opengraph/) and[Twitter Cards](https://dev.twitter.com/docs/cards) meta tags found in`head.html`. If you don't assign a thumbnail the image you assigned to`site.owner.avatar` in`_config.yml` will be used.