SafeInSanity
Junior Member
Falling in love with Proboards again!
Posts: 424
inherit
23917
0
Feb 27, 2020 11:29:13 GMT -8
SafeInSanity
Falling in love with Proboards again!
424
May 2004
wiki
|
Post by SafeInSanity on Mar 25, 2017 5:45:11 GMT -8
Somebody showed me how to do this once before but I lost the code. I want to put the quick reply box on top of a certain board's threads rather than below the threads where it is currently positioned. Is this possible or will it change it globally for all boards?
|
|
SafeInSanity
Junior Member
Falling in love with Proboards again!
Posts: 424
inherit
23917
0
Feb 27, 2020 11:29:13 GMT -8
SafeInSanity
Falling in love with Proboards again!
424
May 2004
wiki
|
Post by SafeInSanity on Mar 26, 2017 11:06:14 GMT -8
Update: I found a code that will achieve this. It looks like Todge made one that works. I found it in another thread so I will post it here if anybody should need this in the future.
To move the Quick Reply in only certain threads, add this to either the Category Footer to cover all of the inclusive boards, or in the Footer(s) of the board(s) that you want it active in.
<script type="text/javascript">
// Move Quick Reply to top of forum...
var qr = $('.quick-reply');
$('#content').before(qr);
</script>
|
|