glr
New Member
Posts: 43
inherit
150042
0
Oct 23, 2013 9:23:28 GMT -8
glr
43
December 2009
glr
|
Post by glr on Apr 6, 2010 12:51:16 GMT -8
I've checked the code database, and there are several options to move the "Forum Jump" drop-down to different places on the home page. My request is different. While within the thread -list display in an individual forum, I'd like the "Forum Jump" to be moved up to a more prominent position at the top, vs. buried at the bottom of the page as it is now.
Preferred location would be within the bar containing "Mark as Read", "New Thread" and "New Poll" if possible, at the far right end of that bar.
My first request ever, thanks in advance if this can be done!
|
|
inherit
58740
0
Aug 20, 2024 7:29:21 GMT -8
®i©hie
I'm not very active here anymore thanks to my full-time job. - 12/27/23
14,036
September 2005
soe
|
Post by ®i©hie on Apr 6, 2010 13:57:52 GMT -8
Hi,
Try This In Global Footers:
<script type="text/javascript"> /* Add "Forum Jump" Into "Mark as Read/New Thread/New Poll" Row By Son Of Exodia*/ /* Global Footer */
var fj=document.getElementById("forumjump"); var font=document.getElementsByTagName("font");
if(fj){for(var t=0;t<font.length;t++){if(font[t].className=="titletext" && font[t].innerHTML.match(/ion=markasread/i)){ font[t].innerHTML+=" "+fj.parentNode.innerHTML+""; }}} </script>
|
|
glr
New Member
Posts: 43
inherit
150042
0
Oct 23, 2013 9:23:28 GMT -8
glr
43
December 2009
glr
|
Post by glr on Apr 7, 2010 7:48:52 GMT -8
Almost perfect, thanks! It leaves the old one in place, which results in two of them adjacent to each other at the bottom. Perfect would be if that original one was removed, leaving the two new ones in the bar where you made them appear. Not sure if that's possible, if not this is adequate.
Thanks!
|
|
inherit
58740
0
Aug 20, 2024 7:29:21 GMT -8
®i©hie
I'm not very active here anymore thanks to my full-time job. - 12/27/23
14,036
September 2005
soe
|
Post by ®i©hie on Apr 7, 2010 11:34:40 GMT -8
Almost perfect, thanks! It leaves the old one in place, which results in two of them adjacent to each other at the bottom. Perfect would be if that original one was removed, leaving the two new ones in the bar where you made them appear. Not sure if that's possible, if not this is adequate. Thanks! Try This: <script type="text/javascript"> /* Add "Forum Jump" Into "Mark as Read/New Thread/New Poll" Row By Son Of Exodia*/ /* Global Footer */
var fj=document.getElementById("forumjump"); var font=document.getElementsByTagName("font");
if(fj){for(var t=0;t<font.length;t++){if(font[t].className=="titletext" && font[t].innerHTML.match(/ion=markasread/i)){ font[t].innerHTML+=' <div id="jump2"></div>'; document.getElementById("jump2").appendChild(fj); }}} </script>
|
|
glr
New Member
Posts: 43
inherit
150042
0
Oct 23, 2013 9:23:28 GMT -8
glr
43
December 2009
glr
|
Post by glr on Apr 7, 2010 14:44:33 GMT -8
Thanks very much! Looks great.
Edited the Subject line to add the "RD" notation.
I think this would be great added to the general code base.
|
|