inherit
168152
0
May 9, 2013 10:49:11 GMT -8
Logi
5
June 2011
logii
|
Post by Logi on May 6, 2013 3:14:21 GMT -8
This is the work site.This code simply isn't working. I know it has worked for other people, but for me no matter what I do it doesn't work. I've tried placing it in all kinds of positions, at the top, at the bottom, in the middle. No matter where I place it in Global Footers, it fails to mod the boards. This is what they're supposed to look like.Are there any conflicting codes? I've tried going through my code and removing stuff that might be interfering with a board mod, but nothing helped. Thank you in advance.
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on May 6, 2013 21:30:20 GMT -8
You are using regular brackets [ and ] when you should be using curly brackets { and } in your css as well as the html.
Example this....
.boardlink a:link, boardlink a:visited [ font-family:georgia; font-size:18px; font-style:italic; font-weight:bold!important; text-transform:lowercase; ]
...should be this...
.boardlink a:link, boardlink a:visited { font-family:georgia; font-size:18px; font-style:italic; font-weight:bold!important; text-transform:lowercase; }
and this in the html is this...
<div class="boardlink"> [BOARDLINK] </div>
...should be this...
<div class="boardlink"> {BOARDLINK} </div>
By the way, this won't work when your forum gets converted to V5, which could happen any day now, unless you opted out until the end of the year.
|
|
inherit
168152
0
May 9, 2013 10:49:11 GMT -8
Logi
5
June 2011
logii
|
Post by Logi on May 6, 2013 23:24:17 GMT -8
I've tried changing the needed brackets to { instead of [, but it still isn't working. Also, v5 isn't a problem as we opted out of it till the end of the year. Anything else that could be causing the problem?
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on May 6, 2013 23:48:53 GMT -8
They absolutely have to be curly brackets so you need to go change them all. Once you change them back, I'll check for any you missed and any other errors.
By the way the [ needs to be { and the ] needs to be } just in case I confused you.
|
|
inherit
168152
0
May 9, 2013 10:49:11 GMT -8
Logi
5
June 2011
logii
|
Post by Logi on May 7, 2013 0:30:34 GMT -8
No, I know. I did change all of them. All the ones I could spot anyway. Thanks for helping out so far, I appreciate it
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on May 7, 2013 15:16:23 GMT -8
Looking over your coding, I don't see any you missed and it should be working now but I can't see since you have your site in MM. I did stick your coding on a test site and although it is working for me, it doesn't look anything like the example you linked to. Are you still wanting it with that exact layout or are you trying something different?
|
|
inherit
168152
0
May 9, 2013 10:49:11 GMT -8
Logi
5
June 2011
logii
|
Post by Logi on May 8, 2013 8:20:28 GMT -8
Hrm okay, although it still doesn't work at all for me. I changed the actual design of the boards, but the main code is still the same (the only thing that changes with MYO Board Mods is the CSS coding), so it's probably the same thing that was causing it to not work as before. All the brackets are changed to curly brackets. I took it off maintenance mode again so you can check it out (another staff member on said test side thought it was okay to switch maintenance back on, sorry).
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on May 8, 2013 20:12:00 GMT -8
It is working on your first category, but the "Dividing Categories" code by Peter, I believe will mess up that code. Try removing that code. Actually, there aren't many other codes that alter something in the categories/boards that will work with the MYO board mod.
|
|
inherit
168152
0
May 9, 2013 10:49:11 GMT -8
Logi
5
June 2011
logii
|
Post by Logi on May 9, 2013 10:03:16 GMT -8
Thanks! That did the trick, now my boards look sexy ;D
Although, I'd still really love to have a category splitter code, how would that be possible? Would changing the order of the headers/footers work? Thanks a lot for your help with this!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on May 9, 2013 11:19:52 GMT -8
I'm not sure if this will work exactly how you want it to work but try adding the blue:
</tr></table> <div style="background-color: transparent; height: 24px;"></div>
</td> </tr>
<!-- End editing --> </xmp>
|
|