• Anonymous
  • Login
  • Register
LDDMonkey - Feature Request: Add spacing in front of dots for current posting - including proposed solution


I usually monitor my own postings using "Show all my posts". More often than not, the link is not to a question, but to a response in what might be quite a messy response hierarchy. While the forum template doesn't do a brilliant job in displaying this hierarchy anyway, it gets worse with LDDMonkey. The additional space taken up by show/hide div symbols ([+]/[--]) makes the current posting look as if it was one level up in the hierarchy.

An easy solution is to add about the same space in front of the dots for the current posting. This line can be identified in all current forums by the existence of the image "threadmap_active.gif". So, what I did is to add one more loop between ignoreList and links:

var pics = document.getElementsByTagName("img");
for (i = 0; i < pics.length; i++) {
var node = pics[i];
var tag = node.getAttribute("src");
if (tag.toLowerCase().indexOf("threadmap_active.gif") >= 0) {
node.style.marginRight = "2.45em";
}
}

I've been using this for a couple of weeks now, and a right margin of 2.45em seems to work reasonably well. It doesn't scale perfectly (but good enough) when overriding the default font size.



Taken Actions by Owners

No actions have been taken yet.


In this field you can enter the actual request.

You can use the rich text editor for rich text formating. You can also enter HTML to embed objects, e.g. to embed a YouTube video or a screenshot of the project. In this case use '[' and ']' to mark the passthrough HTML as such.

Please note that the first time you use the new UI your description is converted from rich text to MIME. You might want to copy and paste the raw plain text from the old UI in the new UI so that you don't loose information.
In this field owners can describe what they have done or want to do.

You can use the rich text editor for rich text formating. You can also enter HTML to embed objects, e.g. to embed a YouTube video or a screenshot of the project. In this case use '[' and ']' to mark the passthrough HTML as such.

Please note that the first time you use the new UI your description is converted from rich text to MIME. You might want to copy and paste the raw plain text from the old UI in the new UI so that you don't loose information.