Re: Highslide Attachment Mod
Posted: 01 Apr 2010, 14:31
Take a look here :
http://phpbb3addons.com/viewtopic.php?f ... 8&p=36#p36
How can i get the images to behave the same?
(the image where stokers avatar is on, is not behaving the same as the rest)
[edit]Fixed[/edit]
my settings looks like this now
include/bbcode.php
What is wrong with that?
There is no control bar
http://phpbb3addons.com/viewtopic.php?f ... 8&p=36#p36
How can i get the images to behave the same?
(the image where stokers avatar is on, is not behaving the same as the rest)
[edit]Fixed[/edit]
my settings looks like this now
Code: Select all
<!-- IF _file.S_THUMBNAIL -->
<dl class="file">
<a href="{_file.U_DOWNLOAD_LINK}/{_file.DOWNLOAD_NAME}" class="highslide" onclick="return hs.expand(this, { wrapperClassName: 'controls-in-heading', slideshowGroup: 'highslide' })"><img src="{_file.THUMB_IMAGE}" alt="{_file.DOWNLOAD_NAME}" title="{_file.DOWNLOAD_NAME} ({_file.FILESIZE} {_file.SIZE_LANG}) {_file.L_DOWNLOAD_COUNT}" /></a>
<!-- <div class="highslide-heading"></div> -->
<div class="highslide-heading"></div>
<!-- IF _file.COMMENT --><br />{_file.COMMENT}<!-- ENDIF -->
</dl>
<!-- ENDIF -->
Code: Select all
<!-- IF _file.S_IMAGE -->
<dl class="file">
<a href="{_file.U_INLINE_LINK}/{_file.DOWNLOAD_NAME}" class="highslide" onclick="return hs.expand(this, { wrapperClassName: 'controls-in-heading', slideshowGroup: 'highslide' })"><img src="{_file.U_INLINE_LINK}" style="max-width:400px;" alt="{_file.DOWNLOAD_NAME}" title="{_file.DOWNLOAD_NAME} ({_file.FILESIZE} {_file.SIZE_LANG}) {_file.L_DOWNLOAD_COUNT}" /></a>
<div class="highslide-heading"></div>
<!-- IF _file.COMMENT --><dd><em>{_file.COMMENT}</em></dd><!-- ENDIF -->
</dl>
<!-- ENDIF -->
What is wrong with that?
There is no control bar
Code: Select all
'img' => '<a class="highslide" href="$1" onclick="return hs.expand(this)"><img src="$1" style="max-height:210px;" alt="' . $user->lang['IMAGE'] . '" /></a><div id="controlbar" class="highslide-overlay controlbar"><a href="#" class="previous" onclick="return hs.previous(this)" title="Previous"></a><a href="#" class="next" onclick="return hs.next(this)" title="Next"></a><a href="#" class="highslide-move" onclick="return false" title="Move"></a><a href="#" class="close" onclick="return hs.close(this)" title="Close"></a></div>',
'size' => '<span style="font-size: $1%; line-height: normal">$2</span>',