I have a question regarding image visibility. Is it possible to hide certain images from a "SHOW ALL" list, but have them appear in a different category list? Below is the code snippet:
<section>
<ul class="portfolio_filters">
<li><a href="#" data-filter="*">show all</a></li>
<li><a href="#" data-filter=".new">New Logos</a></li>
<li><a href="#" data-filter=".black ">Black & White</a></li>
<li><a href="#" data-filter=".industrial">Industrial</a></li>
<li><a href="#" data-filter=".mix">Mix</a></li>
</ul>
</section>
I am looking to exclude certain images from the "SHOW ALL" list but have them only visible in the "New Logos" list, for example. Below is a sample code for a linked image:
<div class="new col-sm-4 col-md-4">
<div class="portfolio_item"> <a href="images/portfolio/stimson.jpg" class="lightbox"> <img src="images/portfolio/stimson.jpg" alt="Wedding photograph">
<div class="overlay">
<div class="desc">
<h4>Stimson</h4>
<span class="cross"></span> </div>
</div>
</a> </div>
</div>
How can I ensure this image is only visible in the "New Logos" list and not in the "SHOW ALL" list?