Code: Alles auswählen
#
#-----[ OPEN ]-----
#
templates\TEMPLATE\bbcode.tpl
#
#-----[ FIND ]-----
#
<!-- BEGIN img --><img src="{URL}" alt="Image" title="Image" border="0" /><!-- END img -->
#
#-----[ REPLACE WITH]-----
# Note: Change the sizes to your desired
<!-- BEGIN img --><img src="{URL}" OnLoad="if(this.width > 800) {this.width=800}" alt="Image" title="Image" border="0" /><!-- END img -->
# Now If you want to add "error handeling" and resize then do this:
#
#-----[ FIND ]-----
#
<!-- BEGIN img --><img src="{URL}" OnLoad="if(this.width > 800) {this.width=800}" alt="Image" title="Image" border="0" /><!-- END img -->
#
#-----[ REPLACE WITH]-----
# Note: Change the url to an image you made
# (EX: http://www.digital-orifice.com/phpBB2/templates/fiblack3dblue/images/error.gif)
<!-- BEGIN img --><img src="{URL}" OnLoad="if(this.width > 800) {this.width=800}" OnError="this.src='error.gif'" alt="Image" title="Image" border="0" /><!-- END img -->
Hat da jemand eine Idee?