Hello, what code would I need to use if I wanted to put an image in the very bottom right corner of my user profile?
@ AceMage
try this
{
position: fixed;
bottom: 50px;
left: 1250px;
height: 100px;
width: 129px;
z-index:-1;}
there's probably a better way to position that, but it'll stick in the bottom corner for sure, and it should stay behind your comment box, shops, etc
Thank you! I didn't think it was working for a while because I couldn't see the image. But then I reduced the size of the image and started seeing a bit of it on the screen. So I adjusted the position and now I can see the whole thing. :)
if you position it from the right instead of the left (i.e. bottom: 10px; right: 10px) that will ensure it is visible on all screen resolutions.
@ AceMage np, i'm glad it worked! if you need to change it in the future, you might try using relative positioning to see if it works better - i did fixed bc it seemed like the easiest way to do it when i was messing with my own profile but now that i see it in action, i realize your image doesn't move with the rest of your profile when you change the size of the browser window s:
oh man, i knew i was missing something, thanks for the correction ;w;