Nochmals Schritt für Schritt:
1. Also der erste Schritt passt (Logo mit name="logo")2. nun kommt die datei easy_resizer.html dran (....../styles/xand/template/easy_resizer.html)Ersetze beide von 500 (Größe in Pixel) durch deine Wahl...
Code:
<script>
window.onload = resizeimg;
function resizeimg()
{
if (document.getElementsByTagName)
{
for (i=0; i<document.getElementsByTagName('img').length; i++)
{
im = document.getElementsByTagName('img')[i];
if (im.width > 500)
{
if (im.name == "logo") {
}
else
{
im.style.width = '500px';
eval("pop" + String(i) + " = new Function(\"pop = window.open('" + im.src + "','phpbbegypt ','fullscale','width=400,height=400,scrollbars=1,resizable=1'); pop.focus();\")");
eval("im.onclick = pop" + String(i) + ";");
if (document.all) im.style.cursor = 'hand';
if (!document.all) im.style.cursor = 'pointer';
im.title = 'Klick mich ganz fest bitte - ich brauch das! ';
}
}
}
}
}
</script>
3. Datei von viewtopic_body.html braucht eine Zeile mehr (/styles/xand/template/viewtopic_body.html)Code:
<!-- INCLUDE overall_header.html -->
<!-- INCLUDE easy_resizer.html -->