Tried adding a second carousel to storefront by duplicating the "featured-products" product listing carousel with hopes of then just editing its contents displayed, but it displayed its contents vertically instead of horizontally. Where did I go wrong, or its not that simple?
Code:
<div class="sfnt-hero hide medium-show">
<mvt:item name="readytheme" param="image( 'sfnt_hero' )" />
</div>
<div class="sfnt-hero show medium-hide">
<mvt:item name="readytheme" param="image( 'sfnt_mobile_hero' )" />
</div>
<div class="breaker clear"></div>
<div class="column whole medium-one-third align-center sfnt-promo">
<mvt:item name="readytheme" param="image( 'sfnt_promo_left' )" />
<div class="breaker show medium-hide"></div>
</div>
<div class="column whole medium-one-third align-center sfnt-promo">
<mvt:item name="readytheme" param="image( 'sfnt_promo_middle' )" />
<div class="breaker show medium-hide"></div>
</div>
<div class="column whole medium-one-third align-center sfnt-promo">
<mvt:item name="readytheme" param="image( 'sfnt_promo_right' )" />
</div>
<div class="breaker clear"></div>
<h2 class="column whole align-center uppercase navy hide medium-show">
<mvt:item name="readytheme" param="banner( 'storefront-message' )" />
</h2>
<div class="breaker clear"></div>
<mvt:item name="readytheme" param="productlisting( 'featured-products' )" />
<div class="breaker"></div>
<div class="hide medium-show">
<div class="breaker clear"></div>
<mvt:item name="readytheme" param="productlisting( 'featured-products' )" />
<div class="breaker"></div>
<div class="hide medium-show">
<mvt:item name="readytheme" param="banner( 'storefront-about-us' )" />
</div>
<div class="breaker clear"></div>
Comment