Highslide Attachment Mod

Modifications for phpBB3. Try the Mods here and share Your own Mods
There is no support here! Only Read Access!
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Locked
chris1002
BBCoder II
BBCoder II
Posts: 17
Joined: 04 Apr 2010, 19:24
Location: Germany

Re: Highslide Attachment Mod

Post by chris1002 »

i have the bbcode from the first post.

[hsimg]{URL}[/hsimg]

Code: Select all

<div class="highslide-gallery">
    <a href="{URL}" class="highslide" onclick="return hs.expand(this)"><img src="{URL}" alt="" title="Click to enlarge" style="max-width:300px; max-height:300px;" /></a><div class="highslide-heading"></div>
    </div>
when i have more pics, what do I have to then make?
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Highslide Attachment Mod

Post by Stoker »

Try this instead and let me know if it works

Code: Select all

<div class="highslide-gallery">
    <a href="{URL}" class="highslide" onclick="return hs.expand(this, { wrapperClassName: 'controls-in-heading', slideshowGroup: 'highslide' })"><img src="{URL}" alt="" title="Click to enlarge" style="max-width:300px; max-height:300px;" /></a><div class="highslide-heading"></div>
    </div>
Board rules! No PM support
chris1002
BBCoder II
BBCoder II
Posts: 17
Joined: 04 Apr 2010, 19:24
Location: Germany

Re: Highslide Attachment Mod

Post by chris1002 »

perfectly, now however only one, are it possible the pictures next to each other?

also: pics pics pics

Thanks
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Highslide Attachment Mod

Post by Stoker »

There is an example in the FAQ in first post.
Board rules! No PM support
chris1002
BBCoder II
BBCoder II
Posts: 17
Joined: 04 Apr 2010, 19:24
Location: Germany

Re: Highslide Attachment Mod

Post by chris1002 »

the code is perfect, only are the pictures beside each other. With the other code, the Slideshow does not go.
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Highslide Attachment Mod

Post by Stoker »

You have to replace

Code: Select all

(this)
with

Code: Select all

(this, { wrapperClassName: 'controls-in-heading', slideshowGroup: 'highslide' })
in the side by side bbcode
Board rules! No PM support
chris1002
BBCoder II
BBCoder II
Posts: 17
Joined: 04 Apr 2010, 19:24
Location: Germany

Re: Highslide Attachment Mod

Post by chris1002 »

good morning,
I understand not completely, in some file must I that change? In the BBcode or in script a file?
Thanks for the help.

Hier ist the aktuall BBCode:

Code: Select all

<div class="highslide-gallery">
        <a href="{URL}" class="highslide" onclick="return hs.expand(this, { wrapperClassName: 'controls-in-heading', slideshowGroup: 'highslide' })"><img src="{URL}" alt="" title="Click to enlarge" style="max-width:200px; max-height:200px;" /></a><div class="highslide-heading"></div>
        </div>
Greeting Chris
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Highslide Attachment Mod

Post by Stoker »

That looks fine, and the controlbar will work.
Board rules! No PM support
chris1002
BBCoder II
BBCoder II
Posts: 17
Joined: 04 Apr 2010, 19:24
Location: Germany

Re: Highslide Attachment Mod

Post by chris1002 »

but as I can make three pictures beside each other. Now are they indicated among themselves?

Pictures are now like that:

pics
pics
pics

I would like it so:

pics pics pics

not under other, but beside other

Thank for help
User avatar
Stoker
Site Admin
Site Admin
Posts: 3521
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Highslide Attachment Mod

Post by Stoker »

Stoker » 04 Apr 2010, 23:31 wrote:There is an example in the FAQ in first post.
Did you read above?
Board rules! No PM support
Locked