I'm currently in the process of integrating Isotope into my latest Wordpress theme. However, I've encountered an issue where it's not appearing on the page due to some external factor adding an inline style (display:none) to the main isotope wrapper.
Here's a snippet of how it's being displayed:
<div id="container" class="photos clearfix isotope" style="position: relative; overflow: hidden; display: none;">
To work around this, I took matters into my own hands by applying the following CSS override within my style sheet:
.isotope {
display:block !important;
}
However, I can't help but feel like there might be a more elegant solution to address this issue. Any suggestions for a better approach?