mlorfiee(chainsaw)'s profile picture

Published by

published

Category: Layouts

question abt making ur profile

i tried copy n pasting my blinkies/stamps n stuff as usual and i hate how they show up as like one blinkie/stamp per line.

my coding knowledge is buns at best, soo could anyone help?

Kudos: 0

Comments

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?