Place Hugo Instagram Feed Horizontally

Hi!

Can you advise how to place instagram feed horizontally?

Thnak you!

Hi - I split this off as a separate question. You can format it however you like. It depends upon what css you have. If you use a library, you could refactor the template code shown in the original tip, to be whatever you need it to be.

For instance, if you were using Tachyons you could use this:

http://tachyons.io/components/collections/albums/index.html

The repeated element is this:

{{ range first 5 $inst.data }}
  <li><a href="{{ .link }}" target="_blank"><img src="{{ .images.standard_resolution.url }}" alt="{{ .caption.text }}"></a></li>
{{ end }}

So you would either write css to style the <li> elements, or, put the range around some sample code from some library, that does what you want.

Hi Rick!

Thank you!