IMVU HTML/CSS Snippets
Here are some codes to get you started.
Image at the top of your profile.
Code Revised by jspunkette
<style type="text/css"> #mininav { background-image:url('image url goes here') !important; background-repeat: no-repeat !important; background-position: 50% 20% !important; height:250px !important; /* change the height to whatever your image height is */ margin-bottom:30px !important; } </style>
Don't want people to use Inspect element? No worries.
By Sweetcatxo
<script type="text/javascript"> function blockrightclick() { alert('Dont Touch This!'); return false; } document.oncontextmenu=blockrightclick; </script>
- Page only accesible to members that are signed in.
By gaf210 and antonio82
<script type="text/javascript"> if(!(document.getElementById("mininav-avname"))) { alert('Please log in and come back.'); document.location.href = "http://www.imvu.com/catalog/login.php"; } </script>
Scrolling Text / Shoutout text?
By ? Idk ? Me? I guess.
<div style="position: absolute; top:8px; left:45px; background-color:transparent;"> <marquee style="border-width:0px; border-style:none; width:290px; height:18px;" direction="left" behavior="scroll" scrollamount="3"> <i>Your text goes here.</i> </marquee> </div>
FYI:
<i>
</i>
is for italics.<b>
</b>
is for bold<u>
</u>
Underline<p>
</p>
New paragraph<br>
</br>
line breaks.Clickable Pictures that open in tab.
I invented this. Jk
<a href="Type what you want here"><img src="http://HereGoesYourLink.derp"></a>