Add thumbnail to the left and right of a list item

As stated I want to know if a list item can have a thumbnail or avatar on both sides

Thanks

You can do this.

<a ng-repeat="item in items" 
   href="#/{{item.id}}"
   class="item item-thumbnail-left thumb-right">
  <img ng-src="{{ item.image }}">
  <h2>{{ item.album }}</h2>
  <h4>{{ item.artist }}</h4>
  <img ng-src="{{ item.image }}">
</a>


.item.thumb-right img:nth-child(4){
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  max-width: 80px !important;
  max-height: 80px !important;
  width: 100%  !important;
}
1 Like

Great suggestion thanks!