We’ve looked at this code several times and can’t figure out what is wrong.
The original widget has 7 collapsible boxes, if you put X in the content it won’t show, but I needed one with 14 collapsible boxes, so I added more. The only hitch is I have something in every box of the 14-box widget, but it’s only showing 7 boxes of the widget.
Here is the original box code:
CLICK CATEGORY BELOW TO EXPAND
#if($headline1 != “x”)
$headline1
$content1
#end
#if($headline2 != “x”)
$headline2
$content2
#end
#if($headline3 != “x”)
$headline3
$content3
#end
#if($headline4 != “x”)
$headline4
$content4
#end
#if($headline5 != “x”)
$headline5
$content5
#end
#if($headline6 != “x”)
$headline6
$content6
#end
.newtopnote {
width:200px;
margin:0 auto;
padding:5px;
border: 1px solid #eeeeee;
border-bottom:none;
text-align:center;
color:#666;
background-color:#f7f7f7;
}
.newacad_header {
padding:10px;
font-size:18px;
background-color:#1d417f;
color:#ffffff;
border-bottom:1px solid #ccc;
cursor:pointer;
}
.newacad_body {
padding:20px;
background-image:url(/Assets/global/images/bkgdropgrad.png);
background-position:top;
background-repeat:repeat-x;
border:1px solid #eeeeee;
background-color:#f7f7f7;
font-size:14px;
}
.newacad_body a {
color:#1d417f;
}
.newacad_body a:hover {
color:#333333;
}
Here is the 14-box widget code:
CLICK CATEGORY BELOW TO EXPAND
#if($headline1 != “x”)
$headline1
$content1
#end
#if($headline2 != “x”)
$headline2
$content2
#end
#if($headline3 != “x”)
$headline3
$content3
#end
#if($headline4 != “x”)
$headline4
$content4
#end
#if($headline5 != “x”)
$headline5
$content5
#end
#if($headline6 != “x”)
$headline6
$content6
#end
#if($headline7 != “x”)
$headline7
$content7
#end
#if($headline8 != “x”)
$headline8
$content8
#end
#if($headline9 != “x”)
$headline9
$content9
#end
#if($headline10 != “x”)
$headline10
$content10
#end
#if($headline11 != “x”)
$headline11
$content11
#end
#if($headline12 != “x”)
$headline12
$content12
#end
#if($headline13 != “x”)
$headline13
$content13
#end
#if($headline14 != “x”)
$headline14
$content14
#end
.newtopnote {
width:200px;
margin:0 auto;
padding:5px;
border: 1px solid #eeeeee;
border-bottom:none;
text-align:center;
color:#666;
background-color:#f7f7f7;
}
.newacad_header {
padding:10px;
font-size:18px;
background-color:#1d417f;
color:#ffffff;
border-bottom:1px solid #ccc;
cursor:pointer;
}
.newacad_body {
padding:20px;
background-image:url(/Assets/global/images/bkgdropgrad.png);
background-position:top;
background-repeat:repeat-x;
border:1px solid #eeeeee;
background-color:#f7f7f7;
font-size:14px;
}
.newacad_body a {
color:#1d417f;
}
.newacad_body a:hover {
color:#333333;