Hi all,
I am a noob when it comes to codes etc. I was wondering how I would add a gif to my profile?
TIA. 😊
[edit] Apologies - unsure whether this should have been posted in the web design forum?
depends where you're trying to add it. do you want it in a regular profile block where you would type in custom text? in that case you could just add it with the normal image embed scode, as long as you have the direct link to the gif (right click > open image in new tab > copy url, making sure it ends in .gif). so that would look something like this:

and then this would show up in the block:

if you want to add it somewhere else on the page, you would have to create a custom div that contains the image and then position it where you want it, so for example inside your style tags you would put something like:
{
position: absolute;
left: 30px; bottom: 30px;
width: auto; height: auto;
}
and then outside the style tags, you'd add:

let me know if that helps or if you need any more details/clarification!
Thank you so much, that worked perfectly. Is there any way of resizing the gif in the profile block?