
Originally Posted by
Veronika7747
hmm, when I switch to classic template, all seems fine....
I'll keep looking
I promise, its not the cherry zen template, it is an error in the module. The classic template is not a floating <div> based template like Cherry Zen is. The extra </div> is there even when you switch to classic template, but since the classic template is a simpler template, it does not break with the error. All "floating" based designs tend to be more finicky when there is a <div> issue. Believe me, I've seen it happen enough with this template to know what's going on. 
I don't have a site with the mod installed to test this fix, but I think if you change the last lines of tpl_returns_default.php from this:
Code:
</fieldset>
<?php
}
?>
</div>
</form>
<div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
</div>
to this:
Code:
</fieldset>
</div>
<?php
}
?>
</form>
<div class="buttonRow back"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
</div>
The problem will go away. It is a matter of a misplaced </div>. Anyway, change that, and let me know if the issue goes away.
Bookmarks