userlookups
userlookups
Making userinfo images visible
Look in the source code for
#userinfo img. The part you're looking for will be either this
#usershop img, #userinfo img, #footer, #header, #userneohome, hr, #ban, #habitarium, .brand-mamabar {
display: none;
}
or this
#userinfo img {
display: none;
}
In the first case, you have to remove the bolded part, don't forget the comma. In the second case, you can remove that whole code.
If you want to remove only your shield, you can put this code between your style tags
#userinfo .medText img {visibility:hidden;}
#userinfo .medText table table img {visibility:visible;}
Making modules visible
The removal codes are (almost?) always at the top of the code. If you can't find it, you can search for
display:none.
#footer, #header, #userneohome, hr, #usershop, #ban, #habitarium, .brand-mamabar {
display: none;
}
The red parts are the ones you can remove to make your modules visible.
#userneohome stands for you neohome module,
#usershop stands for your shop and gallery module and
#habitarium stands for your habitarium module.
Do not forget to also remove the comma's
Making images larger/smaller
Trophies: If you want to change the size of your trophies, you have to look in te code for
#usertrophies img. The code usually looks something like this
#usertrophies img {
width: 50px;
height: 50px;
}
Change these numbers to change the size of your trophies. The original size of a trophy is 80x80px, making the images larger will make them blurry.
Neopets: If you want to change the size of your neopets, you have to look in te code for #userneopets img. The code usually looks something like this
#userneopets img {
width: 120px;
height: 120px;
}
Change these numbers to change the size of your trophies. The original size of a neopet img is 150x150px, making the images larger will make them blurry.
petpage layouts
petpage layouts
How to find the save button
The save buttons aren't visible on every layout because of the new filter changes. Here are two tricks on how to find the save button.
1. Find the save button by using the tab key. What I do is scroll to the bottom of the page, click in the text and then press tab. Because you start at the bottom of the page, the next thing the tab selects is (mostly) the save button. If you've found it, hit enter.
2. Try to zoom out. This trick doesn't work with every layout, but you can always try. You can zoom out by holding the ctrl button en scrolling.
pet lookups
pet lookups
Making your petpet(pet) visible
You have to look in the code for this part:
.contentModuleContent div img {
display: inline;
}
To make your petpet(pet) visible you have to repace this part with this part:
.contentModuleContent div img, .medText img {
display: inline;text-align:center;
}