[Theme] FI Apple Blue - for Coppermine Gallery 1.3.x [Theme] FI Apple Blue - for Coppermine Gallery 1.3.x
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

[Theme] FI Apple Blue - for Coppermine Gallery 1.3.x

Started by DaMysterious, September 23, 2004, 11:51:22 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

DaMysterious

I just released by user request - FI AppleBlue for Coppermine Gallery v1.3.x.

Life view at DaMysterious

Download at DaMysterious
DaMysterious.

Joachim Müller

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

DaMysterious

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.
DaMysterious.

Joachim Müller

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 - Download

Joachim

dxb

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