How to Make a New Panel on IMVU
A panel on IMVU, a social game and entertainment site, is an area that contains specific content, such as your outfits, on your profile page. IMVU does not provide a way to make new panels if the available ones do not suit your purposes, but you can use a workaround instead. Use the tools in your account to create an available panel and then change the title to suit your needs.
Instructions
-
-
1
Log in to your IMVU account. Click the "Account" link in the menu bar to go to the Account Settings & Tools page.
-
2
Scroll down to the Panel Visibility Settings section and click the drop-down arrow next to a panel, such as My Wishlist, that is set to "Off." Select an option, such as "Everyone," to determine who sees the new panel. Click the "Update Preferences" button at the bottom of the section to save your panel, and then click your avatar name in the menu bar to go to your profile.
-
-
3
Click the "Edit" button in the top right corner of the new panel and select the "Edit custom HTML/CSS" option in the list that appears. This action brings up a text box.
-
4
Enter the following code to change your panel's title:
<script type="text/javascript">
$(document).ready(function() {
$("#_panel").find(".paneltitletext").text("Enter Your Panel Name Here");
//
});
</script> -
5
Replace the "_panel" entry after the hash tag in the third line of code with the panel id of your new panel. For example, if you created the "My Wishlist" panel, enter "#wishlist_panel" like so:
$("#wishlist_panel").find(".paneltitletext").text("Enter Your Panel Name Here"); -
6
Enter the desired panel name in place of the "Enter Your Panel Name Here" entry in the third line of code. To illustrate:
$("#wishlist_panel").find(".paneltitletext").text("Your New Panel Name"); -
7
Click the "Save" button at the bottom of the window. The complete code now looks like this example:
<script type="text/javascript">
$(document).ready(function() {
$("#wishlist_panel").find(".paneltitletext").text("Your New Panel Name");
//
});
</script>
-
1
Tips & Warnings
The IMVU panel identifiers are as follows: #aboutme_panel, #ad_panel, #badges_panel, #blog_panel, #contact_panel, #cool_panel, #dev_panel, #friends_panel, #gallery_panel, #groups_panel, #messages_panel, #outfits_panel, #rankings_panel, #room_panel, #rss_panel, #special_panel, #stickers_panel, #tagcloud_panel, #url_panel, #video_panel, #visitors_panel and #wishlist_panel.