im having an issue moving down the main section of text on my new pet profiles im messing around with---on
xOliver finch and
x[pet not found]
the main section, the one thats visible... i can use the extra div section, and move that around freely, but i cant seem to find where to move the main section down?
could anyone help, and if so should i mail you my code so you find out the issue? please and thank you, ping me please... have a great day!
you need to use the div to move that section. so anywhere in your code, just paste this and change the top and left values until the text is where you want it:
{position:absolute; left:50px; top:50px;}
you can also move the pet like heart by adjusting the top and left values for .pet_like
omg thank you I've been wondering how to move the heart! I usually just hid it with the minion lol thank you :)
no prob 😊 you can also use {display:none} on anything you want to hide.
ooo thankies hehe i got like a template profile somewhere and it already had all the normal pet profile things to hide... its just now i have a few special flairs id like to add, but idk how... :/
... like custom spoiler box colors for pet profiles, and this cool effect where even if youre scrolling, theres an immage to the side staying with you--and the all cool/creepy thing i want to find is that code that makes it possible to say the usename of the person visiting my pets page, so its like my pet is talking right to the person reading, and that way the story is always different haha... ///i did that last part back in neopets, a long time ago---but i know the coding is different here.... hmmm lol...
look at me just rambling lol sorry ^;;;
i don't think subeta has a code that grabs the username of the person viewing the page, but i do remember using it on neopets way back when. you can change the spoiler box colors by changing the hex value in this code:
.spoiler_click {background:none repeat scroll 0% 0% !important;}
for a static image, you could do it as a non-repeating background image, so you would just use this and replace URL with that of the image you want, and of course adjust the numbers until it's where you want it (the first number represents the horizontal position from the left, and the second number represents the vertical position from the top):
html,body {background-color:; background-image:url(URL); background-position:900px 100px; background-repeat:no-repeat; background-attachment:fixed;}