« Helping each other Forum

how to add a gif to the bottom corner of my profile

aaaa can someone please help


Report Topic

3 Replies

Sort Replies:

Reply by arlo atomickk

posted

<div style="float: ; max-height: 800px; position: fixed; LEFT/RIGHT: 1px; TOP/BOTTOM: 1px; z-index: 200;"><img src="INSERT URL"/></div>

/*left and right (only put one) makes the image go to the left or right and changing the px changes how tight to the edge of the page it is.

Top/bottom does the same only with the tops and bottoms of the page.*/


Permalink Report Reply

Reply by ☆Donnie☆

posted

Reply by victoriasykes219

posted

You can use custom CSS in your profile settings. Go to your profile, click on "Edit Profile," and in the "About Me" section, add the following CSS code:


#profile {

  position: relative;

}


#gif {

  position: absolute;

  bottom: 10px;

  right: 10px;

  width: 100px; /* adjust size */

}


#gif img {

  width: 100%;

}

Then, upload your GIF somewhere like an image hosting site (e.g., Imgur), and add the link to the "About Me" section with this HTML code:


<div id="gif"><img src="YOUR_GIF_URL_HERE" alt="Your GIF"></div>


Make sure to replace "YOUR_GIF_URL_HERE" with the actual URL of your GIF. This will position the GIF in the bottom corner of your profile.


Permalink Report Reply