|
Post by Streamstrider on Oct 7, 2011 23:57:06 GMT -8
As you may already know, here is the forum. I'm using Todge's Collapse Categories code. And while it's working fine, it leaves a line at the bottom of one of the categories. (I only have two categories collapsible at the moment. The last one has no line, or this border, but the one above it does, when expanded.)
Screenshot
This is in Firefox.
|
|
|
Post by Wormopolis on Oct 8, 2011 0:13:24 GMT -8
find this line
while(hiddenCat != hiddenCat.parentNode.lastChild && hiddenCat.nextSibling.firstChild.className != 'catbg')
change to
while(hiddenCat != hiddenCat.parentNode.lastChild && hiddenCat.nextSibling.firstChild.className != 'catbg' && hiddenCat.nextSibling.firstChild.id!='rr')
|
|
|
Post by Streamstrider on Oct 9, 2011 1:09:27 GMT -8
|
|