I have a project in progress that requires dynamically displaying icons based on the user's selection. These icons are essentially glyphs with a two-word title underneath them. Essentially, there is an
<div class="col-md-9"> //main container for slider
<i class="some-icon-name"></i>
<div class="col-md-3">
Some title
</div>
--
<i class="some-icon-name"></i>
<div class="col-md-3">
Some title
</div>
--
</div>
I am looking to have these icons and their corresponding divs displayed as a slider or carousel. I attempted using owl carousel and replacing img
but was unsuccessful. I am utilizing bootstrap and jQuery and have tried creating a custom solution without success.