inherit
201162
0
Jun 19, 2020 19:26:01 GMT -8
wanderingjedi
Jedi Master Artist
138
October 2013
shakiah
|
Post by wanderingjedi on Jul 1, 2014 6:16:34 GMT -8
It could be, like I said before, for whatever odd odd reason, the theme I use[ed] generally don't take plug ins very well. O.O I have yet to figure that one out. Most of them I have issues using because they don't work or only parts of them work. In this case, I'm not sure what's going on -- But I know you guys can sort it out. ^^ I'm rather excited to use it!
|
|
inherit
201162
0
Jun 19, 2020 19:26:01 GMT -8
wanderingjedi
Jedi Master Artist
138
October 2013
shakiah
|
Post by wanderingjedi on Jul 1, 2014 7:07:32 GMT -8
Boy_Wonder Todge With a bit of tinkering, I noticed it worked fine in the peekaboo tabs. So it may just be an issue with the Recently updated threads plug-in that it doesn't want to work? Maybe they just don't mesh?
|
|
inherit
Peabrained Codebreaker
107114
0
Mar 11, 2020 7:47:27 GMT -8
Boy_Wonder
6,249
July 2007
natzy24
|
Post by Boy_Wonder on Jul 1, 2014 7:19:08 GMT -8
That's why I was asking Todge to check in
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,323
January 2004
todge
|
Post by Todge on Jul 1, 2014 11:47:49 GMT -8
Hey-ya..
The OTM plugin cannot add the content directly to the Recent Threads Cell because that plugin waits for the page to load before it is fired, when the OTM plugin is looking for the extra cell, it doesn't yet exist.
But with a little bit of header/footer code you can..
First, put this in your Global Header...
<div id="OTM" style="display: none;"></div>
That will supply a hidden cell for the OTM plugin to work, then you can move the content to the Extra Cell by putting this into your Global FOOTER..
<script type="text/javascript"> <!-- // Move OTM to Recent Threads Extra Cell..
$(document).ready(function() { $('#extra-cell').html($('#OTM').html()); });
// --> </script>
|
|
inherit
Peabrained Codebreaker
107114
0
Mar 11, 2020 7:47:27 GMT -8
Boy_Wonder
6,249
July 2007
natzy24
|
Post by Boy_Wonder on Jul 1, 2014 11:55:33 GMT -8
Thank you for that Todge!
|
|
inherit
201162
0
Jun 19, 2020 19:26:01 GMT -8
wanderingjedi
Jedi Master Artist
138
October 2013
shakiah
|
Post by wanderingjedi on Jul 1, 2014 20:48:07 GMT -8
Todge Boy_Wonder Awesome! Thanks SO much you guys ^-^ A rather quick question: How do I get the background black on that particular cell? Like the thread one?
|
|
inherit
Peabrained Codebreaker
107114
0
Mar 11, 2020 7:47:27 GMT -8
Boy_Wonder
6,249
July 2007
natzy24
|
Post by Boy_Wonder on Jul 1, 2014 22:45:36 GMT -8
If you go into the Recent Threads tab itself it should have all the css for it - you'd find #extra-cell (may not be exact name) and add or change background-color to "background-color: #000000;"
|
|
inherit
201162
0
Jun 19, 2020 19:26:01 GMT -8
wanderingjedi
Jedi Master Artist
138
October 2013
shakiah
|
Post by wanderingjedi on Jul 2, 2014 5:26:24 GMT -8
It looks like all the backgrounds in each cell are already marked that. I don't want to be changing topics in the wrong thread, so I'll switch this over to the Recent Threads support board. =]
|
|