coppermine-gallery.com/forum

Support => cpg1.3 Themes/Skins/Templates => cpg1.3.x Support => Older/other versions => cpg1.3 theme contributions => Topic started by: DaMysterious on September 23, 2004, 11:51:22 PM

Title: [Theme] FI Apple Blue - for Coppermine Gallery 1.3.x
Post by: DaMysterious on September 23, 2004, 11:51:22 PM
I just released by user request - FI AppleBlue for Coppermine Gallery v1.3.x.

Life view at DaMysterious (http://damysterious.xs4all.nl/gallery/index.php?theme=fiappleblue)

Download at DaMysterious (http://damysterious.xs4all.nl/viewtopic.php?t=594)
Title: Re: [Theme] FI Apple Blue - for Coppermine Gallery 1.3.x
Post by: Joachim Müller on September 24, 2004, 07:07:04 AM
the package contains a lot of files that are not needed nor used by coppermine - I guess those are leftovers from a phpbb theme. Please review.

Joachim
Title: Re: [Theme] FI Apple Blue - for Coppermine Gallery 1.3.x
Post by: DaMysterious on September 24, 2004, 01:06:11 PM
Quote from: GauGau on September 24, 2004, 07:07:04 AM
the package contains a lot of files that are not needed nor used by coppermine - I guess those are leftovers from a phpbb theme. Please review.

Joachim

Please get a fresh copy GauGau. I archived the wrong directory by accident, sorry for that.
Title: Re: [Theme] FI Apple Blue - for Coppermine Gallery 1.3.x
Post by: Joachim Müller on September 26, 2004, 07:25:38 AM
no problem, it's one of the advantages that another person has to approve things before they go into downloads. Such things can happen easily - only those who don't contribute at all can't make such minor mistakes ;)
As always, I appreciate your work.
Demo (http://coppermine.sourceforge.net/demo/index.php?cat=0&theme=fiappleblue) - Download (http://prdownloads.sourceforge.net/coppermine/cpg1.3.x_theme_fiappleblue.zip?download)

Joachim
Title: photo pop up
Post by: dxb on April 03, 2005, 12:08:01 AM
the photo pop up is to small!
when you clic on the photo it display the bars,

to resoslve it just modify .../scipts.js

at the end of file you find "function adjust_popup()" just add 20 pix (like mine in red):

function adjust_popup()
{
        var w, h, fixedW, fixedH, diffW, diffH;

        if (document.all) {
                fixedW = document.body.clientWidth + 20;
                fixedH = document.body.clientHeight + 20;
                window.resizeTo(fixedW, fixedH);
                diffW = fixedW - document.body.clientWidth;
                diffH = fixedH - document.body.clientHeight;
        } else {
                fixedW = window.innerWidth  + 20;
                fixedH = window.innerHeight  + 20;
                window.resizeTo(fixedW, fixedH);
                diffW = fixedW - window.innerWidth;
                diffH = fixedH - window.innerHeight;
        }
        w = fixedW + diffW;
        h = fixedH + diffH;
        if (h >= screen.availHeight) w += 16;
        if (w >= screen.availWidth)  h += 16;
        w = Math.min(w,screen.availWidth);
        h = Math.min(h,screen.availHeight);
        window.resizeTo(w,h);
        window.moveTo((screen.availWidth-w)/2, (screen.availHeight-h)/2);
}

http://www.ufo22.it/album