inherit
164980
0
Oct 11, 2012 23:21:29 GMT -8
Tohsaka Rin
Why do men keep falling into my residence? I can collect on the damage insurance, right?
602
March 2011
lunacticinferno
|
Post by Tohsaka Rin on Apr 30, 2013 15:55:26 GMT -8
So, some time back I had to completely disable the breadcrumb navtree that normally goes below the welcome table because it was getting in the way. There are a few ways to remove it or move it but it absolutely refused to be placed in the area that I wanted it.
I wanted it UNDER the newsfeed, but all attempts on moving it only caused it to either be disabled/vanish/not function.
After getting frustrated with it for almost a month I went and commented it out of the template until someone had a better idea on how I could move this to the appropriate area that I wished for it to go.
This is what I currently have. We tried to move it below the notice area but yeah...as stated, it wont go.
|
|
inherit
164980
0
Oct 11, 2012 23:21:29 GMT -8
Tohsaka Rin
Why do men keep falling into my residence? I can collect on the damage insurance, right?
602
March 2011
lunacticinferno
|
Post by Tohsaka Rin on May 2, 2013 1:40:11 GMT -8
Bump
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on May 3, 2013 10:38:05 GMT -8
It'd be far simpler to do this with JavaScript. You can just add this to your Global Header (assuming you want it across all themes):
<script type="text/javascript"> $(document).ready(function() { $('#navigation-tree').before($('#news')); }); </script>
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,024
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on May 3, 2013 11:35:59 GMT -8
It'd be far simpler to do this with JavaScript. You can just add this to your Global Header (assuming you want it across all themes): <script type="text/javascript"> $(document).ready(function() { $('#navigation-tree').before($('#news')); }); <span style="font-family: Verdana, Arial; font-size: 10pt;"></script></span>
Ironic Tim Camara there's a WYSIWYG gremlin (unintended span) in your code and thanks for the chuckle, I really needed one today
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on May 3, 2013 11:41:36 GMT -8
Yeah, I realized the irony of posting header and footer codes while I was doing it, but a full-blown plugin seemed excessive in this case.
|
|
inherit
164980
0
Oct 11, 2012 23:21:29 GMT -8
Tohsaka Rin
Why do men keep falling into my residence? I can collect on the damage insurance, right?
602
March 2011
lunacticinferno
|
Post by Tohsaka Rin on May 3, 2013 18:37:40 GMT -8
Sorry, this was not exactly what I was looking for. I wanted to put the breadcrumbs under the news area, not above it, nor merged with the welcome table.
Thanks though.
|
|
inherit
164980
0
Oct 11, 2012 23:21:29 GMT -8
Tohsaka Rin
Why do men keep falling into my residence? I can collect on the damage insurance, right?
602
March 2011
lunacticinferno
|
Post by Tohsaka Rin on May 6, 2013 7:02:45 GMT -8
Bump~
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on May 6, 2013 7:35:44 GMT -8
$('#news').after($('#navigation-tree'));
Probably need to do the same with the participated button, or wrap both it and the nav bar in another div, and target that instead.
|
|
inherit
164980
0
Oct 11, 2012 23:21:29 GMT -8
Tohsaka Rin
Why do men keep falling into my residence? I can collect on the damage insurance, right?
602
March 2011
lunacticinferno
|
Post by Tohsaka Rin on May 7, 2013 6:28:16 GMT -8
I tried what I could with that code and nothing would work. I probably am not doing it right anyway since I have no clue about what to do with it. I cannot make another div because if I do the whole thing seems to stop working at all and refuses to go anywhere else other than the way it is defaulted to in the template.
I don't get it....
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on May 7, 2013 7:39:18 GMT -8
Just put this in your global header:
<script type="text/javascript"> $(document).ready(function() { $('#news').after($('#navigation-tree')); $('#navigation-tree').before($('.recent-threads-button')); }); </script>
|
|
inherit
164980
0
Oct 11, 2012 23:21:29 GMT -8
Tohsaka Rin
Why do men keep falling into my residence? I can collect on the damage insurance, right?
602
March 2011
lunacticinferno
|
Post by Tohsaka Rin on May 8, 2013 8:32:41 GMT -8
I'm sorry, but it still does not work. I don't know what is going on but that is the result for everything we have tried to do with it so far.
|
|
inherit
The Dream Crusher (Ret.)
164921
0
Apr 1, 2014 11:00:25 GMT -8
Tim Camara
Teach a man to fish, etc., etc.
1,721
March 2011
tcamara
|
Post by Tim Camara on May 8, 2013 9:42:24 GMT -8
It works perfectly when I turn your plugins off. I'll leave it to you to figure out which plugin is interfering.
|
|
inherit
164980
0
Oct 11, 2012 23:21:29 GMT -8
Tohsaka Rin
Why do men keep falling into my residence? I can collect on the damage insurance, right?
602
March 2011
lunacticinferno
|
Post by Tohsaka Rin on May 9, 2013 15:25:56 GMT -8
Sorry but the DTT cannot be removed and I have no idea how to correct any of those problems. I do not code, I make graphics. I do not know what is wrong with it either or why it will not work correctly.
|
|