New module: Navigation Carousel v4.3

glodakan
glodakan's picture

Joined: 2010-06-13
Posts: 51
Posted: Mon, 2010-08-02 13:00
hukoeth wrote:
I just released version 4 of the module with the following changes:
[*]Fixed incompatibility with right-to-left languages
[*]Added some options how to display thumbnails
[*]Made dynamic thumbnail loading optional. If this is switched off the positioning / scrolling bug is gone.
[*]Added load indicator

I will continue to work on the issue with the positioning when dynamically loading the thumbnails and will post and update as soon I have it sorted out.

The updated version can be downloaded from the first post.

wow... thank you very much hukoeth

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Mon, 2010-08-02 13:29

Hi,
It seems that the site doesn't include the JS file (which is my fault since I packed the wrong one in the post - I should stop doing 1000 things at the same time, sorry for that).

Can you download the fix from this post, follow the steps from the post before and report back?

I like the theme on that site btw.

Thanks,
Uli

---
Build bridges not barriers.

AttachmentSize
fixedmod.zip1.79 KB
Login or register to post comments
Lord Beowulf
Lord Beowulf's picture

Joined: 2010-03-31
Posts: 56
Posted: Mon, 2010-08-02 23:46

Hey Uli,

That did it! Thanks for all the work. Looks great! And thanks on the theme. It's just a color modified Wind theme, but for something that I just started playing with as my first attempt at modifying CSS, I'm pretty happy with it. I still have a few stray colors that haven't been handled, especially in the admin theme, but hey, I'm the only one that annoys!

Now what I need is an option for the album folder. Your carousel wouldn't be bad, but isn't the ideal either. I'm not sure I'm ready to take on the concept of doing something more elaborate. All I really need is a simple list of page numbers. While I've seen a theme that someone had with a page number link list, I haven't seen a module for that, and don't remember the site that had it implemented. Ah well. At any rate, thanks again for all the work!

Beo

Login or register to post comments
Lord Beowulf
Lord Beowulf's picture

Joined: 2010-03-31
Posts: 56
Posted: Tue, 2010-08-03 00:30

BTW, one comment/question. I note that with a large gallery it takes quite a while for the carousel to refresh. It sits there with the scrolling asterisk symbol for quite a while. I'm sure that's because of the way it refreshes its image list. Any ideas on minimizing that? Note that this is with the dynamic loading still enabled, so that's not it. Thoughts?

Thanks,

Beo

Login or register to post comments
Lord Beowulf
Lord Beowulf's picture

Joined: 2010-03-31
Posts: 56
Posted: Tue, 2010-08-03 01:21

Uli,

One more question. I'm updating a version to match my theme (unfortunately themes still don't override modules--need to talk to someone about that!), and the only problem I have is with the highlight around the active image. I didn't find anything that would affect that in the module CSS or my theme CSS. I'll scan some code, but if there's an easy way to change it, I'd welcome the input.

Thanks,

Beo

Login or register to post comments
brewster

Joined: 2010-07-12
Posts: 47
Posted: Tue, 2010-08-03 01:32

Hi! Added this module to Gallery Wind, and works great. I put the carousel on top since on the bottom display option it was displaying below the comment lines (kind of lost at the bottom, and if there are many comments visitors won't even see carousel.) If it was immediately under larger photo, that might be nice. Maybe you've already addressed this - if so, let me know. Also made thumbnails 150 since 50 was too small. Easy to configure. Great job, Uli!! Thanks!!

Brewster

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25968
Posted: Tue, 2010-08-03 03:23

@brewster regarding comments/position: There is a ticket to address this and a workaround is to edit the DB:
http://gallery.menalto.com/node/97124#comment-349242

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Tue, 2010-08-03 13:28
Lord Beowulf wrote:
Now what I need is an option for the album folder. Your carousel wouldn't be bad, but isn't the ideal either. I'm not sure I'm ready to take on the concept of doing something more elaborate. All I really need is a simple list of page numbers. While I've seen a theme that someone had with a page number link list, I haven't seen a module for that, and don't remember the site that had

Not sure if I understand exactly what you are looking for but have a look at grey dragon theme. If that is what you want then have a look at the paginator.html.php file in views (if my memory serves me correctly). Maybe this can help you.

Lord Beowulf wrote:
BTW, one comment/question. I note that with a large gallery it takes quite a while for the carousel to refresh. It sits there with the scrolling asterisk symbol for quite a while. I'm sure that's because of the way it refreshes its image list. Any ideas on minimizing that? Note that this is with the dynamic loading still enabled, so that's not it. Thoughts?

This is realted to the event I use to show the carousel. It will only be schown if all elements on the page are completely loaded. I was doing this differently before but it seems that Opera and Chrome sometimes showed it before it was loaded and positioned. If you don't mind then you can change the file navcarousel\helpers\navcarousel_theme.php. Change line 94 from
$(window).load(function () {\n
to
$(document).ready(function () {\n

Lord Beowulf wrote:
One more question. I'm updating a version to match my theme (unfortunately themes still don't override modules--need to talk to someone about that!), and the only problem I have is with the highlight around the active image. I didn't find anything that would affect that in the module CSS or my theme CSS. I'll scan some code, but if there's an easy way to change it, I'd welcome the input.

I'm using the same classes that buttons are using. For the current image I use the hovered class. Let me know if this helps or if you need more information.

Uli

---
Build bridges not barriers.

Login or register to post comments
dmolavi
dmolavi's picture

Joined: 2002-12-05
Posts: 569
Posted: Tue, 2010-08-03 16:02

Getting this error in 4.1:

2010-08-03 08:03:56 -07:00 --- error: Kohana_404_Exception [ 43 ]: The page you requested, modules/navcarousel/css/ie-css3.htc, could not be found.

--
For PHPNuke, phpBB2, and phpBB3 integration help, please visit NukedGallery.net.

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Tue, 2010-08-03 18:09

Version 4.2 is out (see first post) with the following changes:

hukoeth wrote:
Lord Beowulf wrote:
BTW, one comment/question. I note that with a large gallery it takes quite a while for the carousel to refresh. It sits there with the scrolling asterisk symbol for quite a while. I'm sure that's because of the way it refreshes its image list. Any ideas on minimizing that? Note that this is with the dynamic loading still enabled, so that's not it. Thoughts?

This is related to the event I use to show the carousel. It will only be shown if all elements on the page are completely loaded. I was doing this differently before but it seems that Opera and Chrome sometimes showed it before it was loaded and positioned.

Made this configurable.

hukoeth wrote:
Getting this error in 4.1:

2010-08-03 08:03:56 -07:00 --- error: Kohana_404_Exception [ 43 ]: The page you requested, modules/navcarousel/css/ie-css3.htc, could not be found.

Thank you for reporting this. This should be solved now.

Uli

---
Build bridges not barriers.

Login or register to post comments
Lord Beowulf
Lord Beowulf's picture

Joined: 2010-03-31
Posts: 56
Posted: Wed, 2010-08-04 00:24
hukoeth wrote:
Lord Beowulf wrote:
Now what I need is an option for the album folder. Your carousel wouldn't be bad, but isn't the ideal either. I'm not sure I'm ready to take on the concept of doing something more elaborate. All I really need is a simple list of page numbers. While I've seen a theme that someone had with a page number link list, I haven't seen a module for that, and don't remember the site that had

Not sure if I understand exactly what you are looking for but have a look at grey dragon theme. If that is what you want then have a look at the paginator.html.php file in views (if my memory serves me correctly). Maybe this can help you.

That was it, thanks. I'll take a look at the code.

hukoeth wrote:
Lord Beowulf wrote:
BTW, one comment/question. I note that with a large gallery it takes quite a while for the carousel to refresh. It sits there with the scrolling asterisk symbol for quite a while. I'm sure that's because of the way it refreshes its image list. Any ideas on minimizing that? Note that this is with the dynamic loading still enabled, so that's not it. Thoughts?

This is realted to the event I use to show the carousel. It will only be schown if all elements on the page are completely loaded. I was doing this differently before but it seems that Opera and Chrome sometimes showed it before it was loaded and positioned. If you don't mind then you can change the file navcarousel\helpers\navcarousel_theme.php. Change line 94 from
$(window).load(function () {\n
to
$(document).ready(function () {\n

Thanks. I see in your follow up you made that an option.

hukoeth wrote:
Lord Beowulf wrote:
One more question. I'm updating a version to match my theme (unfortunately themes still don't override modules--need to talk to someone about that!), and the only problem I have is with the highlight around the active image. I didn't find anything that would affect that in the module CSS or my theme CSS. I'll scan some code, but if there's an easy way to change it, I'd welcome the input.

I'm using the same classes that buttons are using. For the current image I use the hovered class. Let me know if this helps or if you need more information.

I found it. It's just buried in the themeroller css files. Of course now the problem I can't quite figure out is how to get the combined .CSS file to refresh so that I can actually see changes when I make them!

Beo

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Thu, 2010-08-12 11:40

Just a heads up: I'm still working on getting the positioning fixed when dynamic image loading is switched on but I am currently quite busy so it might take a while.
I have however written a module addressing the problem that the carousel is displayed below the comments section (see first post)

Regards,
Uli

---
Build bridges not barriers.

Login or register to post comments
mamouneyya

Joined: 2009-11-02
Posts: 337
Posted: Fri, 2010-08-13 13:56

By the way, for those that are annoyed of showing the carousel on the bottom of the comments, you can use resize_bottom() function instead of photo_bottom(). The negative side of this way is that the carousel will be shown directly under the resized photo, before the title & description.. but it's better than the bottom of the page, though.

Find (in /YourGalleryDirectory/modules/navcarousel/helpers/navcarousel_theme.php) :

  static function photo_bottom($theme) {
    if (!module::get_var("navcarousel", "abovephoto", false)) {
      if ($theme->page_type == "item") {
        return new View("navcarousel.html");
      }
    }
  }

and change it this way:

  static function resize_bottom($theme) {
    if (!module::get_var("navcarousel", "abovephoto", false)) {
      if ($theme->page_type == "item") {
        return new View("navcarousel.html");
      }
    }
  }
Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Fri, 2010-08-13 14:05

Hi mamouneyya,
If you are running the latest code from github you can also use "Module order". This will allow you change the order in which modules are being loaded and therefore in which order the content is being displayed.

It will not work in RC2 though you need the latest code from GIT.

Regards,
Uli

---
Build bridges not barriers.

Login or register to post comments
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2436
Posted: Fri, 2010-08-13 16:26

hi,
great module!
Question: I installed latests experimental with 4.2 version. For some reason I do not see thumb background. Am I missing something?

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Sat, 2010-08-14 08:01

Hi Serge,
I can only repro with Chrome. In FF it work for me. Can you confirm that?
Will have a look this weekend.

---
Build bridges not barriers.

Login or register to post comments
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2436
Posted: Mon, 2010-08-16 00:22

@hukoeth: I do not use either Chrome or FF. issue above is present in IE8

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25968
Posted: Mon, 2010-08-16 00:54

I think the issue is in Serge D GreyDrogon theme he is overriding some form elements in
http://photo.dragonsoft.us/themes/greydragon/css/forms.css
there is:

input[type="submit"], .g-button, button { 
 cursor: pointer; /* hand-shaped cursor */ 
 cursor: hand; 
/* for IE 5.x */ 
font-size: 0.8em; 
color: #333 !important; 
padding: 2px 10px; 
margin-top: 0.4em; 
border: 1px solid; 
border-color: #999 #666 #666 #999; 
background-color: #ddd; 
font-weight: normal; }

All on one line ( but that should not matter) but the background-color: #ddd; is the culprit.
I don't know why the Carousel would be affected by it as I don't see g-button or button.
I will let you guys come to some consensus for what to do.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2436
Posted: Mon, 2010-08-16 06:30

well, yes, i am defining the style for buttons and button-alike links
is it used by the module?

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Mon, 2010-08-16 08:12

Yes I'm using the button classes for the frames around the thumbnails. However I discovered a few other problems related to your theme (I think it is only happening in the latest version because I know it worked before) which I will try fixing as soon as I can.

---
Build bridges not barriers.

Login or register to post comments
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2436
Posted: Mon, 2010-08-16 14:09

do you do special css for these? if so, may be wrapper prefix would allow more precice class definition? for buttons I have to be generic enough to get consistency.
but if there is a fix which could be applied to the theme, I will gladly do so

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Mon, 2010-08-16 20:18

Hi Serge,
For the images I use
g-button ui-corner-all ui-icon-left ui-state-default carousel-thumbnail

and for the highlighted (current) image I use
g-button ui-corner-all ui-icon-left ui-state-hover carousel-current

the two carousel-* classes set a shadow, margin and padding. The rest are standard theme classes.

Hope that helps,
Uli

---
Build bridges not barriers.

Login or register to post comments
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2436
Posted: Mon, 2010-08-16 21:41

I guess, I have a problem with g-button use here then, since it is not a button per se.
in Wind theme as well as many other modules input[submit] is styled the same as some of the links which should appear as button - bluish rectangle representing button. Since this style used for links (ex. Cancel) and buttons (ex. Submit) to define your own theme, one have to redefine it.
For your plugin I think using g-button is conceptially not right because you define your block - roller (panel) with or without border, with arrows, with or without background color. And if thumbs are intended, then there is a style for it.

This would allow redefining it for the theme it could be used with.
For the most part, it is how it is today... just g-button...

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Tue, 2010-08-17 07:11
Serge D wrote:
For your plugin I think using g-button is conceptially not right because you define your block - roller (panel) with or without border, with arrows, with or without background color. And if thumbs are intended, then there is a style for it.

Hi Serge,
I decided to use the g-button class for the container because having just the thumbnails make them seem a bit "lost" on the page. Therefore I wanted a frame around them and the g-button class seemed suitable as it should look OK in most themes out of the box.

If I define a custom class for this then people will have to make changes to the css if they use different themes which I want to avoid. This is why I still think that this solution is OK for most users (please keep in mind that there will be many users not familiar with changing css, html, php etc. once Gallery 3 will officially be released) but I am open to any suggestions to make this better.
One thing I could think of is to make this an admin option (e.g. "Show frames around thumbnails" or similar).

Let me know what you think,
Uli

---
Build bridges not barriers.

Login or register to post comments
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2436
Posted: Tue, 2010-08-17 17:46

Ok, solved. Thanks!

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Tue, 2010-08-17 18:12

Cool. What did you change in the end? Just curious after all I'm new to this :-)

---
Build bridges not barriers.

Login or register to post comments
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2436
Posted: Tue, 2010-08-17 18:42

when defining g-button rule, I made it as [form .g-button], so it it boxed and only applied to forms

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25968
Posted: Wed, 2010-08-18 02:35

The wonders of Cascading in Cascading Style Sheets. Glad you guys came to consensus. :-)

Dave

_____________________________________________
Blog & G2 || floridave - Gallery Team

Login or register to post comments
rubycon42

Joined: 2010-09-13
Posts: 2
Posted: Mon, 2010-09-13 11:11

hi!
i just
- upgrades to the newest gallery code
- installed a new gallery

in the existing one it gives me an error on the upgrade page (cannot upgrade)

on the new installation its not possible to activate this module

close to the rainbow

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Mon, 2010-09-13 18:40

Hi. Thanks for reporting this. I will have a look tomorrow
---
Build bridges not barriers.

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Tue, 2010-09-14 09:12
rubycon42 wrote:
hi!
i just
- upgrades to the newest gallery code
- installed a new gallery

in the existing one it gives me an error on the upgrade page (cannot upgrade)

on the new installation its not possible to activate this module

close to the rainbow

I could reproduce the issue with the upgrader but not with the new install. However can you please try version 4.3 attached to the first post in this thread. This should at least get rid of the upgrader issue (and hopefully the other one as well.

Thanks,
Uli

---
Build bridges not barriers.

Login or register to post comments
rubycon42

Joined: 2010-09-13
Posts: 2
Posted: Tue, 2010-09-14 11:53

great, thanks!
it worked in both cases!

close to the rainbow

Login or register to post comments
dmolavi
dmolavi's picture

Joined: 2002-12-05
Posts: 569
Posted: Thu, 2010-09-16 12:14

@hukoeth - can you put 4.3 in git? gallerymodules.com has both versions 4.2 and 4.3 in there right now, and i want to make sure that if they are going to be listed under both the git-derived modules and the codex modules, the versions are the same.

thanks :)

--
For PHPNuke, phpBB2, and phpBB3 integration help, please visit NukedGallery.net.

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Thu, 2010-09-16 12:58

It's in my fork. I will send a pull request later

---
Build bridges not barriers.

Login or register to post comments
AveryNelson

Joined: 2008-05-10
Posts: 28
Posted: Sat, 2010-09-18 18:39

Hi Uli,

Thanks for all your work on this great contribution.

I am seeing issues with gallery either not 'installing' 4.2, or it not playing well with version numbers that aren't whole integers (i.e. those that contain decimals).

I pulled a copy of the code in the first post, but it seems to be 4.0, not 4.3, despite the zip file name is 4-3.

Avery

Login or register to post comments
hukoeth

Joined: 2009-03-20
Posts: 127
Posted: Sat, 2010-09-18 18:52

Hi Avery,
The file attached to the first post is indeed 4.3 but will be reported as 4 in Gallery. I didn't look too much into the whole versioning system of Gallery 3 (yet). On the other hand I also don't want to increase the version number by one everytime I modify a tiny bit of code.

Sorry for the confusion

---
Build bridges not barriers.

Login or register to post comments
martintoy

Joined: 2010-12-05
Posts: 3
Posted: Mon, 2010-12-06 13:22

Its a fantastic module,
Thanks for it,
I would suggest if there is a way to avoid all the extra spaces between the thumbnails,
or may be reduce the distance between them.

Saludos,

Martintoy
htt://www.martintoy.com

Login or register to post comments
Armani2

Joined: 2007-05-09
Posts: 263
Posted: Sun, 2011-01-09 12:23

Im still having problems with this module Active, Albums with more then a couple of hundred photos takes forever to load?
This is even If I dont use the Navcarousel thumbs to load a photo, but even If I use the standard gallery buttons. Going from one photo to the next with this module loaded takes a good 3 seconds? I tried loading it first, and changing the bit of code in which I read above..
Once I disable the module the photos load normally...
Marcus..

Login or register to post comments
Armani2

Joined: 2007-05-09
Posts: 263
Posted: Sun, 2011-01-16 02:30

I would appreciate any help with this problem! I really like and need this module as large albums are to hard to look through photo by photo and this is a great solution, but its really sluggish on large albums???
Album Carousel dosent seem to display this problem but also cant get it to work above the photos which is where i want it ...
It is up and running, If Dave or someone could take a look I would be greatful....
Marcus
www.armaniphotography.com/gallery

small albums work great such at this, http://www.armaniphotography.com/gallery/index.php/New-Work
big albums are sluggish such as this, http://www.armaniphotography.com/gallery/index.php/Head-Of-The-Lagoon-20102

Login or register to post comments
Velociped
Velociped's picture

Joined: 2009-12-25
Posts: 58
Posted: Sun, 2011-01-16 20:29

Hi Uli,

thanks for this great module! I love it! :-)

I have disabled "dynamic thumbnail loading". But for my taste the scrolling then was a bit too quick, so I added the following attribute to the jcarousel code to control the speed:
animation: ". 600 .",\n
File: modules/navcarousel/helpers/navcarousel_theme.php
Now it goes much smoother. :-)

Something I couldn't figure out yet is about the cropping. If I choose "crop thumbnails" to get square images then only the part on the left of a picture is visible.
But how can the center be displayed? How can a cropping be done on both sides (left+right) or (top+bottom)?

Login or register to post comments
Armani2

Joined: 2007-05-09
Posts: 263
Posted: Sun, 2011-01-23 06:31

If you like and use this module,do not upgrade to gal 3.0.1 as it at this point is not compatable
and does not show..
Im sure It will be updated by the Author to work with the new release, but if you rely on it as I did
your better off waiting....

Login or register to post comments
K_Magnus_Larsson

Joined: 2010-11-02
Posts: 12
Posted: Mon, 2011-01-24 23:00

Hello hukoeth,

Me too.
I have the same problem as reported by Armani2. The carousel does not show up after upgrading to Gallery 3.0.1.

Best regards,

Magnus

Login or register to post comments
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2436
Posted: Mon, 2011-01-24 23:39

you need updated code from git

Login or register to post comments
Serge D
Serge D's picture

Joined: 2009-06-11
Posts: 2436
Posted: Wed, 2011-01-26 16:59

Confirmed - module is not compatible with the latest G3
problem is that it emmits javascript directly into header before any of the combined/aggregated JS code is loaded
Module need to be restructured to move initialization into external JS module related file and then add it to be combined with the rest
another approach would be to add js initialization into the footer instead

Login or register to post comments
floridave
floridave's picture

Joined: 2003-12-22
Posts: 25968
Posted: Thu, 2011-01-27 03:17

not to step on hukoeth's toes but there seems to be a lot of call for this popular module to work with G3.0.1
Attached is my first attempt at refactoring it a bit. Not tested much but it seems to work for me.
More time and effort needs to be done and will attempt to find some time to help out hukoeth with this great module.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

AttachmentSize
navcarousel.zip28.03 KB
Login or register to post comments
Sammy_K

Joined: 2011-01-25
Posts: 29
Posted: Thu, 2011-01-27 22:07

Hi,

I would like to use your great module. Unfortunatley it seems to do nothing (not bo be seen) in my gallery 3.0.1 - clean canvas Installation (eventhough its activated?)

What could be wrong?

Greetings,
Sammy

*** http://www.kramann.net [actually for a short period of time http://test.kramann.net ]

Login or register to post comments
mamouneyya

Joined: 2009-11-02
Posts: 337
Posted: Thu, 2011-01-27 22:15
Sammy_K wrote:
Hi,

I would like to use your great module. Unfortunatley it seems to do nothing (not bo be seen) in my gallery 3.0.1 - clean canvas Installation (eventhough its activated?)

What could be wrong?

If you just went up one post!

Login or register to post comments
Sammy_K

Joined: 2011-01-25
Posts: 29
Posted: Thu, 2011-01-27 22:22

Erm - ok my fault ... or happily not my fault its really a general problem :-) I will wait then

*** http://www.kramann.net

Login or register to post comments
Armani2

Joined: 2007-05-09
Posts: 263
Posted: Thu, 2011-01-27 22:24

Well I seem to be on the pay no mind list LOL...
Though the Nav Car Is updated and working thanks to Dave,
I am still having a sluggish issue with large albums, say
200 or more photos...
If anyone has some insight on this or a direction I can head
to speed it up please let me know..
Thanks..
From below use the nav car to go to the next photo..

http://www.armaniphotography.com/gallery/index.php/Head-Of-The-Lagoon-20102/IMG_3962

Login or register to post comments
Sammy_K

Joined: 2011-01-25
Posts: 29
Posted: Fri, 2011-01-28 15:27

@ Armani2: You mean it works with G 3.0.1. now? Version 4.3 does still not work for me.

Erm... ok I see I guess you are using the modified version from floridave http://gallery.menalto.com/files/navcarousel.zip

I will try that :-) ==> That works but with clean canvas team the position is not directly under the picture (comments are in between) ... looks somehow curios (http://test.kramann.net )
Nevertheless thanks at all of you especially floridave and the original author :-)

*** http://www.kramann.net

Login or register to post comments