Comments

« Back to Blog Entry


Report

I had to pull all my graphics n shit collection in a div container box so it wouldnt do that.. so like 

<div class="container">

Ur links n shit

</div> 

Then I put this style code in for the container box

.container {

  display: flex;

  flex-wrap: wrap; 

  gap: 6px;

  max-width: auto;

  margin: 0 auto;

  box-sizing: border-box;

  position: relative;

}

.container img {

  max-width: auto; 

  height: auto;

  }



ill deff try that, tysmm!

by mlorfiee(chainsaw); ; Report

Report

I'm not a pro at coding, i'm a frankensteiner and kinda just learn as I go. What does the code look like?