Fannish Browsing Tools, Part 2

Dec 04, 2007 17:26

I don't know if this is a good time to make this post, but then I don't know when IS a good time, what with all the hell and all the handbaskets. It's a list of some bells and whistles for LJ, LJ clones, and other fannish places. See also Part OneI use some of these a lot; some not at all. I am not endorsing any of them. As with anything you ( Read more... )

lj, computers are our friends, recs: software & web tools & sites

Leave a comment

gnatkip December 8 2007, 01:27:48 UTC
"Modifying browser space is just too much fun." I KNOW, RIGHT?! Hee!

Oh yay! Did the ?style=mine changes work for you?

The hover does link to userpics, if you click on their default. Unless I'm misunderstanding. I wish it linked to their friends page, though.

About ljwho: It's been so long since I fiddled with it, I'd forgotten what I did. ;) Ok, near the top of the code, there's this:

var color = "#88FF88;";
if (!realName) {
color = "#FF8888";
}
child.setAttribute("style",
"cursor: pointer; " +
"margin: 4px; font-weight: bold; font-size: 8px; " +
"background-color: black; color: " + color + ";");
if (realName) {
child.setAttribute("title", realName);
}

And then at the bottom of the code there's this:

if (realName != "") {
thisSpan.style.color = "#88FF88;";
} else {
thisSpan.style.color = "#FF8888";
}

In both places, #88FF88 is the text color for names that have been annotated, and #FF8888 is the text color for names that have not yet been annotated. You can change these to whatever you want. (Change them both places.) You can also change
"background-color: black;" to whatever color you want.

I did something a little different because I wanted annotations to be more obvious, so I used the background rather than the text as the thing that changes depending on whether you're storing info or not. My changes are coming in the next comment.

Reply


Leave a comment

Up