forum.coppermine-gallery.net
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
-
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)
-
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
-
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.
-
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
-
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