Currently, I am customizing my portfolio and looking to implement my own method for positioning the portfolio items. The Isotope library typically uses absolute positioning with left and top properties to position portfolio elements. Even after trying to override this default behavior by setting the position property to relative in my CSS rule for portfolio items, the elements still retain the left and top attributes when viewed in samples of portfolio items after loading the Isotope library:
<article class="portfolio-item pf-audio" style="position: absolute; left: 212px; top: 0px;"></article>
<article class="portfolio-item pf-websites" style="position: absolute; left: 424px; top: 0px;"></article>
I am seeking guidance on how to successfully apply my customized approach to positioning these elements without being affected by the left and top properties added by the Isotope library.