Page 2 of 2
Re: Another Album module template
Posted: Thu Jan 04, 2007 5:09 pm
by Elijah Lofgren
jameshontishar wrote:
What do you normally use to batch resize the photos
I use KDE on Linux and use the kipi plugin's batch resizer through Gwenview.
I'm sure there are similar programs for Windows.
Re: Another Album module template
Posted: Thu Jan 04, 2007 6:04 pm
by 3dcandy
Irfanview is a free windows program to batch process files....

Re: Another Album module template
Posted: Wed Jan 10, 2007 5:35 pm
by liudaz
Deadend.
I have updated the album module. I see, that Elijah has made a really great job.
Lightbox was the coolest thing i wanted to have on my website. After installing, reinstalling and experimentig, i still get an error, which you can see by clicking on a link below:
http://lvjc.lt.oleandras.serveriai.lt/index.php?mact=Album,cntnt01,default,0&cntnt01albumid=1&cntnt01returnid=41
Why is the picture at the bottom, after you click on a thumbnail? I believe it has to do something with the JS.
Please, help me to fix this.
Re: Another Album module template
Posted: Wed Jan 10, 2007 5:58 pm
by Dr.CSS
You have no call in the or any where else for the Lightbox js... so it's using the default behavior for album...
Re: Another Album module template
Posted: Wed Jan 10, 2007 7:06 pm
by liudaz
Code: Select all
<!--Lightbox 2.0.2-->
<__script__ type="text/javascript" src="modules/Album/templates/db/lightbox/js/prototype.js"></__script>
<__script__ type="text/javascript" src="modules/Album/templates/db/lightbox/js/scriptaculous.js?load=effects"></__script>
<__script__ type="text/javascript" src="modules/Album/templates/db/lightbox/js/lightbox.js"></__script>
Theese are the JS files, that are called then the album page is opened. This still isn't enough?

Re: Another Album module template
Posted: Wed Jan 10, 2007 7:30 pm
by Elijah Lofgren
You need to attached the updated "Album template stylesheet" to your page template. It has the styles needed by lightbox.
Hope this helps,
Elijah
Re: Another Album module template
Posted: Wed Jan 10, 2007 8:11 pm
by liudaz
Elijah Lofgren wrote:
You need to attached the updated "Album template stylesheet" to your page template. It has the styles needed by lightbox.
Hope this helps,
Elijah
Thanks guys alot! After i have set everything up, i have noticed one more bug (on my side probably) that need to be checked. If you visited the same link and press on a thumbnail (prefered at the top), you would see the the flash banners are not covered with black. I even put a regular flash object into the template with the code:
Code: Select all
<object width="120" height="60">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="120" height="60">
</embed>
</object>
and the white box is still "at the front".
Re: Another Album module template
Posted: Wed Jan 10, 2007 9:44 pm
by Elijah Lofgren
liudaz wrote:
Thanks guys alot! After i have set everything up, i have noticed one more bug (on my side probably) that need to be checked. If you visited the same link and press on a thumbnail (prefered at the top), you would see the the flash banners are not covered with black. I even put a regular flash object into the template with the code:
Code: Select all
<object width="120" height="60">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="120" height="60">
</embed>
</object>
and the white box is still "at the front".
Check out:
http://www.dynamicdrive.com/forums/show ... php?t=9382
http://forums.devshed.com/flash-help-38 ... 75220.html
http://cssbeauty.com/skillshare/discuss ... and-flash/
Hope this helps,
Elijah
Re: Another Album module template
Posted: Thu Jan 11, 2007 7:32 am
by liudaz
Add the following parameter to the OBJECT tag:
Code: Select all
<param name="wmode" value="transparent">
Add the following attribute to the EMBED tag:
Thanks alot!