Homepage Code Help
Goto page 1, 2, 3, 4, 5, 6  Next
 
Post new topic   Reply to topic    IMVU Forum Index -> Homepage Coding Corner
View previous topic :: View next topic  
Author Message


BabiiBunnie Pop! CaYzCaYz bOutique PARIScouture morfelisia s Cupcake The Sims KT Merry Christmas! AviLicious Magazine thumper
378


Joined: 02 Apr 2006
Posts: 218
Location: USA

PostPosted: Wed Dec 19, 2007 8:34 am    Post subject: Homepage Code Help Reply with quote

before adding any of theys codes to your homepage, make sure your save all your text to a "wordpad"! just in case a code doesn't work out the way you thought!!

Header title Reference!
#aboutme_panel - about me panel
#contact_panel - Contact panel
#dev_panel - new products panel
#wishlist_panel - wish list panel
#visitors_panel - visitors panel
#messages_panel - my messages panel
#tagcloud_panel - my interests panel
#stickers_panel - stickers panel
#collect_panel - collection panel
#room_panel - my room panel
#rankings_panel - rankings panel
#cool_panel - new coll people panel
#gallery_panel - My gallery panel
#friends_panel - My friends panel
#streetteam_panel - street team panel
#blog_panel - Blog panel
#music_panel - Music panel
#rss_panel - RSS panel
#url_panel - URL panel
#special_panel - Special Someone panel
#outfits_panel - My outfits panel
#groups_panel - My groups panel

^[please remember it is against IMVU's TOS's to hide your about me panel/info]



Centering ALL panels on your homepage.
make sure all panels are on the left side of your homepage befor entering this code into your about me section.
Code:
<style type="text/css">
   #aboutme_panel, #contact_panel, #dev_panel, #wishlist_panel, #visitors_panel,
   #messages_panel, #tagcloud_panel, #stickers_panel, #collect_panel,
   #room_panel, #rankings_panel, #cool_panel, #gallery_panel, #friends_panel,
   #streetteam_panel, #blog_panel, #music_panel, #rss_panel, #url_panel,
   #special_panel,#outfits_panel, #groups_panel {
      margin-left:165px !important;
   }
   #rightColumn {
      display:none !important;
   }
</style>


Center ALL Text on your homepage
with this code you wont have to use < center > anymore
Code:
<style>
td{text-align:center}
</style>


Center text or pictures
Code:
<center>TEXT OR PIC URL HERE<center>


Removes Pannel Titel
make sure your change the "#aboutme_panel" to what panel you want the header removed!
Code:
<style>
#aboutme_panel .paneltitle{
display: none;
}
</style>


Flashes threw names where your avatar name would be on your homepage.
please edit there code where it says "name" to the name you choice to show on your homepage
Code:
<script type="text/javascript">
 var forSP_othernames=new Array('NAME','NAME','NAME','NAME');
 var forSP_nameid;
 function forSP_changeaviname() {
 forSP_nameid_new=Math.round((forSP_othernames.length-1)*(Math.random()));
 if(forSP_nameid==forSP_nameid_new) {
 forSP_changeaviname();
 } else {
 forSP_nameid=forSP_nameid_new;
 document.getElementById('aboutme_panel_body').getElementsByTagName('b')[0].innerHTML=forSP_othernames[forSP_nameid];
 document.title=forSP_othernames[forSP_nameid];
 }
 }
 window.setInterval('forSP_changeaviname()',3000);
</script>


Add a picture at the TOP of your homepage/Above your about me pannel
please edit this code where it says 'picture url here', and also you can change the width and height to your specific needs
Code:
<style type="text/css">
#top_links {
   text-align:right !important;
   background:url('PIC URL HERE') no-repeat transparent !important;
   width:800px !important;
   height:300px !important;
   display:block !important;
   z-index:0;
}
#avatar_name {
   display:none !important;
}
</style>


Changes the loading text
please edit the code where is says "Text here"
Code:
<script type="text/javascript">
document.getElementById("LoadingPage").innerHTML = 'TEXT HERE<br /><img alt="processing" src="/catalog/web_images/processing2.gif" />';
</script>


Scrolling panels
just edit where it says "#groups_panel" to the desired panel you want to scroll, also make sure you put this code in the panel you want to scroll!
Code:
<style type="text/css"> #groups_panel { overflow: auto; height: 340px; } </style>


Change Panel titles
edit where it says "dev_panel" and put the panel your desire there, Also change where is says "TEXT HERE". Also put this code in the panel you want to change!
Code:
<SCRIPT type=text/javascript>document.getElementById('dev_panel_header').getElementsByTagName('span')[0].innerHTML='TEXT HERE';</SCRIPT>


Add a click able image [like a banner or a picture]
edit where needed
Code:
<a href="WEBSITE HERE"><img src="PIC URL HERE"></a>


Add a separate scroll box, to your profile
edit where needed also you can change the width & height
Code:
<div style="width:300px;height:100px;overflow:auto;border-width:2px;border-color:000000;border-style:solid;">blah blah blah blah blah blah</div>


Hide interest tags, in your "my interests panel"
Code:
<style type="text/css">
#customer_tags_area { display:none !important; }
</style>


Hide all panel titles
Code:
<style type="text/css">
.paneltitle, .panelmenu { display:none !important; }
</style>


Hide panels
edit this code by, adding the panel you dont want after #music_panel, panel, panel, panel....etc.
Code:
<style type="text/css">
#music_panel { display:none !important; }
</style>


feel free to post new codes here!


Last edited by on Thu Dec 20, 2007 7:17 pm; edited 1 time in total
Back to top
View user's profile Send private message  


20


Joined: 17 Aug 2006
Posts: 769
Location: Philippines

PostPosted: Thu Dec 20, 2007 4:25 am    Post subject: Reply with quote

hun, your info's here are very helpful, yet i have to tell you, that there are a lot of threads already present here in this subforum which tells the same info that you're telling...

I advise you to just participate on those threads rather than making new ones which would just clatter up this subforum... xD

thank you hun

_________________
| Products | Ice™
I <3 contradicting my name.
Back to top
View user's profile Send private message  


Cass Fashion By Rae BabiiBunnie L o l l i r o t LuvableMeMeBadgev1 Escape Shopping Bag Smirky J.A.K.
122


Joined: 01 Mar 2007
Posts: 14
Location: Canada

PostPosted: Sat Dec 22, 2007 2:32 pm    Post subject: Reply with quote

well actually.. not all threads listed this info!
Back to top
View user's profile Send private message  


1


Joined: 03 Jun 2007
Posts: 1
Location: USA - OH

PostPosted: Thu Dec 27, 2007 6:39 pm    Post subject: Reply with quote

omg soooo helpful thankies Very Happy
Back to top
View user's profile Send private message  


BabiiBunnie Pop! CaYzCaYz bOutique PARIScouture morfelisia s Cupcake The Sims KT Merry Christmas! AviLicious Magazine thumper
378


Joined: 02 Apr 2006
Posts: 218
Location: USA

PostPosted: Tue Jan 01, 2008 6:30 pm    Post subject: Reply with quote

Bump
Back to top
View user's profile Send private message  


0


Joined: 06 Dec 2007
Posts: 9
Location: USA - NJ

PostPosted: Sat Jan 05, 2008 2:01 pm    Post subject: Reply with quote

So0o0 HewpFul!! Tankiies Very Happy
_________________
WhEn YoUr In DeEp WaTer, ItS a GoOd IdEa To KeEp YoUr MoUtH sHuT


Last edited by on Tue Jan 22, 2008 1:43 pm; edited 1 time in total
Back to top
View user's profile Send private message  


5


Joined: 26 Apr 2007
Posts: 344
Location: USA - CA

PostPosted: Sat Jan 05, 2008 7:42 pm    Post subject: Overlapping panels -.- Reply with quote

Hi! My friend made me a frame which is pretty big..so I put it in my URL panel which was great Wink and it fit and everyything! SmileSmile but then, I wanted to move my messages panel and some other panels to the right, but they went up to the URL panel where my frame was, and over lapped it. Is there a code that there is I can use for my problem?
Back to top
View user's profile Send private message  


BabiiBunnie Pop! CaYzCaYz bOutique PARIScouture morfelisia s Cupcake The Sims KT Merry Christmas! AviLicious Magazine thumper
378


Joined: 02 Apr 2006
Posts: 218
Location: USA

PostPosted: Mon Jan 14, 2008 10:08 pm    Post subject: Reply with quote

OHHxEMMxGEE wrote:
OMG! Thiis IIs Makiing Me Really Piissed!! II Tryed To Hide All My Panels But A Few, Liike Most People, And IIt Doesnt Work!!!!! Everytiime II Do IIt My Page Turns IInto A Mess And Has Liike... Two Panels That II Tryed To Get Riid Of!! PLEASE HELP SOMEONE!!!!!!!!!!!!!!!!!!!!!!

i think you are editing the code the wrough way.
what are the panels you want to hide?
Back to top
View user's profile Send private message  


Cindyy *Sparkles* Products L o l l i r o t morfelisia s Bead Bling mystery Chanel Fashions CAL badge Kimi J.A.K.
87


Joined: 06 Sep 2007
Posts: 722
Location: United Kingdom

PostPosted: Thu Jan 17, 2008 3:15 pm    Post subject: Thank you Reply with quote

This is soo helpful
THANK YOU soo much
xxxx
Back to top
View user's profile Send private message Send e-mail  


DJMaRaDaH Devilishly Devious Devices Moon Tanya Love & Music Bizzy Skull Kimi
57


Joined: 11 Jul 2007
Posts: 66
Location: USA - IL

PostPosted: Mon Jan 21, 2008 10:37 am    Post subject: Reply with quote

This was really helpful, Thanks oh so very much!
Back to top
View user's profile Send private message  


0


Joined: 27 Jul 2007
Posts: 1
Location: Netherlands

PostPosted: Sun Jan 27, 2008 7:13 am    Post subject: Reply with quote

"Flashes threw names where your avatar name would be on your homepage."

When I put that code on my hp, i get a pop up with : stack overflow at line 920.
can i get rid of it?
Back to top
View user's profile Send private message  


IMVUCODES MarniDawg Coffee Fry Code Geass Fan Fairy Tail Fan Raver Soul Eater Fan g3nn3vi3sALIEN


Joined: 07 Mar 2007
Posts: 135
Location: Canada

PostPosted: Sun Jan 27, 2008 10:18 am    Post subject: Re: Homepage Code Help Reply with quote

BabiiBunnie wrote:


^[please remember it is against IMVU's TOS's to hide your about me panel/info]

show me where in to TOS does it say that we cannot hide our about me panel
_________________
Quote:

AMD Athlon x64 4800+x2 2.5Ghz AM2
4 GB OCZ Reaper's DDR2 800
ECS GF8200A w/ nForce 730a AM2+
Nvidia Geforce 8600GT 512MB DDR3
450W Thermaltake PSU
HD IDT Audio
Windows Vista Ultimate SP1 x64
Back to top
View user's profile Send private message  


0


Joined: 04 Jul 2007
Posts: 1
Location: Estonia

PostPosted: Tue Mar 18, 2008 4:12 am    Post subject: help X3 Reply with quote

all the time when I use the get-evry-panel-to-the-center code my buddies panel just dissapears
Back to top
View user's profile Send private message  


2


Joined: 15 Jul 2006
Posts: 16
Location: United Kingdom

PostPosted: Mon Mar 24, 2008 2:56 pm    Post subject: Reply with quote

You're probably very tired of hearing this now, but thankyou very much, this thread has helped me so much! Very Happy
_________________
Back to top
View user's profile Send private message  


IMVU Newbie Content Creator Badge IMVU Gold Pass Badge CDG VIP
4


Joined: 14 Jun 2006
Posts: 778
Location: USA - PA

PostPosted: Mon Mar 24, 2008 8:06 pm    Post subject: Reply with quote

tried to edit the one with "Homepage Loading" but It didnt change, not sure what i did wrong... Confused
Back to top
View user's profile Send private message  
Display posts from previous:   


Hide ads? Get VIP!
Post new topic   Reply to topic    IMVU Forum Index -> Homepage Coding Corner All times are GMT - 8 Hours
Goto page 1, 2, 3, 4, 5, 6  Next
Page 1 of 6

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


 FAQFAQ   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister  ProfileProfile   Log in for private messagesLog in for private messages 

Search the forums:


Powered by phpBB