On Shopify 2.0 themes, you can use the Custom HTML code box on the Mintt Instafeed app extension to add your own code on top of Mintt Instafeed:
Besides HTML, you can also add CSS and JavaScript code.
CSS
To add CSS code, simply put it inside style tags.
<style>
#insta-feed h2 {
font-weigh: bold;
}
</style>
JavaScript
To add JavaScript code, simply put it inside script tags. Mintt Instafeed fires an onload event that you can use to implement custom code.
<script>
document.addEventListener('instafeedAppLoaded', function() {
console.log('your code here');
});
</script>