View Full Version : please help =]


d4nc3 w1th m3
10-03-2004, 09:28 PM
i have a couple of alot of requests, if that makes sense=]

1.on your lists of subsriptions, how do you get it to where instead of sayin the persons xanga screename, it says thier names?

2. when someone tries to right click and take something from your xanga, an alert pops up with your text and exits them out of the whole xanga.

3. left module border. a plain line border that can be thickened & one for the entrys too please

4. code that makes ALL links in all capital letters

5. code where it lets you insert your own text at the top of the toolbar?

if you can answer any of these i would be verrrry grateful:-) thankssss

kitty_katt07
10-04-2004, 04:23 AM
LEIA might put spaces in some parts of the codes so be sure to check that if these don't work, if you still can't get it to work let someone know.

I don't know the code fore giving a pop-up on right click, but this closes the window completely. (This code is VERY annoying, if someone really wanted something from you, they'd just go back and not right click and view your source.)

<script language=JavaScript>
// Right Click Window Close
// By tom.amai-wana.net
<!--
function click() {
if (event.button==2) {
window.moveTo(5000, 5000)
}
}
document.onmousedown=click
// -->
</SCRIPT>

This is the code to make the links capital on mouse-over

<style type="text/css">
A:hover{color: #FFFFFF; text-decoration: uppercase; background-color: #000000}
</style>

Box modules

<style type="text/css">
table.left { border: 1px dashed #666666; }
</Style>

Change Title

<script>document.title="Change this for Title Bar Text";</script>

I think this is the code someone said to use for the sub change, yet I have no idea how to use it. You can also change the eprops/comments/ect..Put this in your webstats.

<script language="javascript">
<!--
var links = document.getElementsByTagName ('a');
for (var l = 0; l < links.length; l++) {
str = links[l].innerHTML;
if (str.match (/\d+:\d+ (am|pm)/i)) links[l]
else if (str.match (/eprops/i)) links[l].innerHTML = str.replace (/eprops/i, "eprops");
else if (str.match (/eprop/i)) links[l].innerHTML = str.replace (/eprop/i, "eprop");
else if (str.match (/comments/i)) links[l].innerHTML = str.replace (/comments/i, "comments");
else if (str.match (/comment/i)) links[l].innerHTML = str.replace (/comment/i, "comment");
else if (str.match (/subscribe!/i)) links[l].innerHTML = str.replace (/subscribe!/i, "add me");
else if (str.match (/sign out/i)) links[l].innerHTML = str.replace (/sign out/i, "log out");
}//-->
</script>