It is not the template itself, it is the javascript accordion which has a fixed height to 125.
Good luck!
Code:
<script type="text/javascript">Window.onDomReady(function() { // get accordion elements myStretch = $$( '.toggler' ); myStretcher = $$( '.stretcher' ); // Create the accordion myAccordion = new Fx.Accordion(myStretch, myStretcher, { /*fixedHeight: 125,*/ opacity : true, display: 0 }); });</script>
Window.onDomReady(function() {
// get accordion elements
myStretch = $$( '.toggler' );
myStretcher = $$( '.stretcher' );
// Create the accordion
myAccordion = new Fx.Accordion(myStretch, myStretcher,
{
/*fixedHeight: 125,*/
opacity : true,
display: 0
});
});
<SCRIPT type=text/javascript>
Window.onDomReady(function() {
// get accordion elements
myStretch = $$( '.toggler' );
myStretcher = $$( '.stretcher' );
// Create the accordion
myAccordion = new Fx.Accordion(myStretch, myStretcher,
{
/*fixedHeight: 125,*/
opacity : true,
display: 0
});
});
</SCRIPT>
Page source:
<script type="text/javascript">
Window.onDomReady(function() {
// get accordion elements
myStretch = $$( '.toggler' );
myStretcher = $$( '.stretcher' );
// Create the accordion
myAccordion = new Fx.Accordion(myStretch, myStretcher,
{
/*fixedHeight: 125,*/
opacity : true,
display: 0
});
});
</script>