inherit
184036
0
Aug 5, 2017 20:09:25 GMT -8
Glass Owl
74
October 2012
twilightdew
|
Post by Glass Owl on Jan 29, 2013 8:54:22 GMT -8
I was using a code that hid the last edit information but you could see it if you clicked on the small icon. I was really liked this code because the last edit information was still available and yet it wasn't cluttering up the board. Any ideas on a template modification that would achieve this would be greatly appreciated. Thanks.
<!--
/* Hide Last Edit Information w/ Onclick Image Hide/Show
By XFAssassin http://exdat.proboards44.com
Do NOT RIP nor REPOST nor CLAIM AS YOUR OWN */
var imgSRC = "http://i49.tinypic.com/wqydm9.jpg"; var font = document.getElementsByTagName("font");
if (location.href.match(/on=(disp|search2|viewpr|(user)?rece|calendarvi)/)) {
for (i=0; i<font.length; i++) {
if (font.item(i).innerHTML.match(/Last\sEdit:/i) && font.item(i).parentNode.align == "left") {
font.item(i).style.display = "none";
var lImg = document.createElement("img");
lImg.setAttribute("src", imgSRC);
lImg.onclick = function() {
var fTarget = this.nextSibling.nextSibling;
(fTarget.style.display == "none")? fTarget.style.display = "" : fTarget.style.display = "none";
}
lImg.onmouseover = function() {
this.style.cursor = "pointer";
}
font.item(i).parentNode.insertBefore(lImg, font.item(i));
font.item(i).parentNode.insertBefore(document.createTextNode(" "), font.item(i));
}
}
}
//-->
</script>
|
|
inherit
184036
0
Aug 5, 2017 20:09:25 GMT -8
Glass Owl
74
October 2012
twilightdew
|
Post by Glass Owl on Feb 1, 2013 9:55:19 GMT -8
Bump.
|
|
inherit
119768
0
Nov 4, 2023 0:57:55 GMT -8
nob
176
February 2008
nob
|
Post by nob on Feb 1, 2013 10:06:28 GMT -8
|
|
inherit
184036
0
Aug 5, 2017 20:09:25 GMT -8
Glass Owl
74
October 2012
twilightdew
|
Post by Glass Owl on Feb 1, 2013 15:40:39 GMT -8
I'd rather not delete it. The code I mentioned earlier in the thread hid the text so that you'd click on a tiny image if you wanted to read the last edit info. The boards look much cleaner with it.
|
|
inherit
184036
0
Aug 5, 2017 20:09:25 GMT -8
Glass Owl
74
October 2012
twilightdew
|
Post by Glass Owl on Feb 16, 2013 17:26:14 GMT -8
Any luck getting this template modification?
|
|
inherit
184036
0
Aug 5, 2017 20:09:25 GMT -8
Glass Owl
74
October 2012
twilightdew
|
Post by Glass Owl on Feb 21, 2013 18:19:02 GMT -8
I'm still hoping someone has a template modification that will solve this for me.
|
|