inherit
134139
0
Oct 9, 2024 5:46:11 GMT -8
Albireo
o_O
1,052
November 2008
albireo
|
Post by Albireo on Mar 13, 2018 12:19:45 GMT -8
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Mar 13, 2018 13:35:08 GMT -8
Hi, Albireo. I believe the board remodel you're using in Themes > Layout Templates > Board > Board List is responsible for this as it has a number of errors related to the tables it contains. Since the Sidebar Redux plugin also utilizes tables to achieve its appearance it's likely that the errors in the Board List template are causing the sidebar table to close prematurely when the browser attempts to correct it. 1. There are <table> tags starting immediately after <tr> tags. The only thing that can start after a <tr> element is a table cell element (either <td> or <th> depending on whether you're in the table head or body). 2. The boarddivider <div> elements are starting immediately after a closing </tr> tag. Similar to the above, the only things that can be added after a closing </tr> are an opening <tr> (to start a new row in the table) or the closing tags for the part of the table you're currently in (usually </thead> or </tbody>, immediately followed by </table> to completely close off the table).
|
|
inherit
134139
0
Oct 9, 2024 5:46:11 GMT -8
Albireo
o_O
1,052
November 2008
albireo
|
Post by Albireo on Mar 17, 2018 7:12:18 GMT -8
Uhh.... So uh... Not sure what to do or how to start on fixing this. I'm a noob when it comes to coding.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Mar 19, 2018 8:03:18 GMT -8
Here's a version of your Board List template with all of the errors I mentioned fixed. You may want to back up your existing Board List template before replacing it with this.
|
|