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?
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?
Comments
Displaying 3 of 3 comments ( View all | Add Comment )
gutted
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
Jamz💋
I'm not a pro at coding, i'm a frankensteiner and kinda just learn as I go. What does the code look like?