« Web, HTML, Tech Forum

How to add image under links section? [closed]

Hello! So today I was looking at my profile and noticed it looked really uneven. The right side of my profile with the blogs, about me, friends list, and profile comments is way longer than the left side with just the interest tables. To combat this, I was wondering if it was possible to add images in the circled section below, where it would be under the links. Thank you!





Report Topic

2 Replies

Sort Replies:

I figured it out


.table-section:nth-of-type(6) {

    position: relative;

    margin-bottom: 1400px;

}


.table-section:nth-of-type(6)::after {

    content: "";

    position: absolute;

    top: 100%;

    left: 50%;

    transform: translateX(-50%);


    width: 300px;

    height: 1200px;


    background-image:

        url("img link"),

        url("img link"),

        url("img link");

       

    background-repeat: no-repeat;


    background-size:

        300px 300px,

        300px 300px,

        300px 300px;

   

    background-position:

        center 0px,

        center 300px,

        center 600px;


}


Permalink Report Reply

Soriyah ⋆──⃝─⃝⃝⃝⃝──⋆ closed this Forum Topic

Reply by Valor

posted

thank you so much im going to try and use this


Permalink Report Reply