Fügt einen simplen Bildverkleinerer zu Deinem Forum hinzu, so dass große Bilder die Tabellen des Beitrags nicht mehr in eine Übergröße versetzen. Funktioniert dynamisch mit jeder Bildschirmauflösung. Die Ausführung von JavaScript muss vom Browser ermöglicht sein, damit es funktioniert.
// da das phpbb z.zeit umzieht habe ich den code hier gepostet
http://umzug.phpbb.de/mods/3_bbcode/32689/Simple_Image_Resize_100.txt
// da das phpbb z.zeit umzieht habe ich den code hier gepostet
Code:
#################################################################
## Mod Title: Simple Image Resize
## Mod Version: 1.0.0 Final
## Author: likeatim < [email]admin@essential-freebies.de[/email] > < [url]http://www.efb.nu[/url] >
## Description:
## Orginal Code by [email]opa@invisionpower.de[/email]
## This adds a simple Image resize code so your tables won't get screwed by oversized images.
## Works dynamically with every screen resolution.
## Uses Javascript, so resizing might not work if people have adblocker (Proxomitron etc.) installed.
## Solution: Users should then add your site to their trusted sites within the adblocker.
##
## Installation Level: Easy
## Installation Time: 1 Minute
## Files To Edit: bb.code.tpl
## Included Files: n/a
#################################################################
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites
#################################################################
##
## Author Note:
## No Notes.
##
## the phpBB Group Reserves The Right To Remove/Edit Author Notes,
## Should It Be Warranted
##
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
#
#-----[ OPEN ]------------------------------------------
#
templates/subsilver (or whatever you use/bbcode.tpl
#
#-----[ FIND ]------------------------------------------
#
[img]{URL}[/img]
#
#-----[ REPLACE WITH ]------------------------------------------
#
[img]{URL}[/img] screen.width-300)this.width = (screen.width-300)" onclick="javascript:window.open('{URL}','','scrollbars=1,toolbar=0,resizable=1,menubar=0,directories=0,status=0')" alt="Posted Image, might have been reduced in size. Click Image to view fullscreen." title="Posted Image, might have been reduced in size. Click Image to view fullscreen." />
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
http://umzug.phpbb.de/mods/3_bbcode/32689/Simple_Image_Resize_100.txt