Grid Alignment Issues / portfolio

Hey everyone, so I have a grid layout containing different projects for my portfolio within my actual portfolio with four items in it.
Should be simple but one item is being pushed down the page making it look like there should be 6 items. I know that doesn’t explain it well but you can see what I’m talking about here https://codepen.io/MarcelPenn/pen/EeBovx?editors=1111 under the “portfolio” heading. The CSS class concerning it is “portfolio-grid”. Any help would be appreciated!!

You have an unclosed <a> tag

<div class="d2">
  <a href="https://codepen.io/MarcelPenn/pen/QVexRw" target="_blank">
    <img class="portImage" src="https://res.cloudinary.com/marpenncloud/image/upload/v1539453344/Screen_Shot_2018-10-13_at_1.53.39_PM_mcvhnd.png" alt="Bootstrap Carousel">
    Integrated Bootsrap Carousel
  <a>  <!-- unclosed a tag here sb </a> -->
</div>
1 Like

Thank you! Can’t believe you spotted that in my mess of code lol

You’re welcome! Showed up in dev tools as an odd empty a tag.

1 Like