The max image post size are parameters from phpbb. It would appear you don't have the max image height set in the ACP.
Looking at the page source, no image/album tree in g2is appears to be a more of a js problem brought on by the style. Your page does not have these calls that would be present in stock phpbb.Code: › var onload_functions = new Array();
var onunload_functions = new Array();
/**
* New function for handling multiple calls to window.onload and window.unload by pentapenguin
*/
window.onload = function()
{
for (var i = 0; i < onload_functions.length; i++)
{
eval(onload_functions[i]);
}
}
window.onunload = function()
{
for (var i = 0; i < onunload_functions.length; i++)
{
eval(onunload_functions[i]);
}
}
Either add this code or to keep things more consistent with your style try changing this in g2is.html Code: › onload_functions.push('MooTree()');
onload_functions.push('toggleTextBoxes()');
To this Code: › MooTree();
toggleTextBoxes();