How to group external websites?

5 messages Options
Embed this post
Permalink
hinkel11

How to group external websites?

Reply Threaded More More options
Print post
Permalink
Hi there,

it is possible to group links for external websites, i.e. to show the navigation inside the shadowbox for switching betwenn the different sites? As far as I know it works for images, where you put [category_name] into the rel attribute - but does it also work for external sites?
Wizzud

Re: How to group external websites?

Reply Threaded More More options
Print post
Permalink
Try it?
Combine literacy with curiosity and a whole world of information opens up to you
hinkel11

Re: How to group external websites?

Reply Threaded More More options
Print post
Permalink
Doesn't work the way it does with images. Maybe there is another possibility?!

Here is a live demo:
http://www.corona-gehren.de/main/

Simply click on a slide or the "Mehr"-button in the slideshow and you will see an external site opened in a shadowbox.

The problem is that there is not a link for every slide. It's coded with javascript.
I implemented the shadowbox the following way:

[code]<div class="slide">
                <div class="slide-inner">
                        <a'.$target.' href="'.$link.'" rel="shadowbox;width=600;height=350" >
                               
                                        path.'" alt="'._FPSS_MOD_IMGALT.'" />
                                               

                                       

                               
                       
                        <div class="fpss-introtext"'.$hidecontent.'>
                                <div class="slidetext">'.$thecontent.'</div>
                        </div>
                </div>
        </div>
[/code]

What can I do?
Wizzud

Re: How to group external websites?

Reply Threaded More More options
Print post
Permalink
rel="shadowbox;width=600;height=350[Slide]"
should be
rel="shadowbox[Slide];width=600;height=350"
as per the documentation.
Combine literacy with curiosity and a whole world of information opens up to you
hinkel11

Re: How to group external websites?

Reply Threaded More More options
Print post
Permalink
Thanks. Now it works.