Re: Using two on same page [ Started by Disfunctional in Galleria : 3 replies ]

a simple search for 'faq' resulted in:
http://devkick.com/talk/topic/3/galleria-faq/

Re: typo in base? [ Started by HansBKK in Tripoli : 1 replies ]

yes, that's a typo. It will be corrected in future versions. thanks!

Re: Using two on same page [ Started by Disfunctional in Galleria : 3 replies ]

Read the faq

Re: Linking Images [ Started by aisikowi in Galleria : 6 replies ]

Hi All

I'm sorry about the confusion here, but just to make things clear: Galleria is not a commercial product. This forum is not a support forum, even though I try to answer questions when I have spare time. Hopefully another user can answer it before me.

Before you throw questions and expect answers in the forums, try reading the documentation and experiment a bit. There is an onImage function that gets executed when the main image is loaded. My idea to have a url linked to the image is something like:

[code]
onImage : function(image) { image.click(function() {
// do stuff here
}); }
[/code]

Re: Not showing thumbnails [ Started by vavroom in Galleria : 4 replies ]

Hi

I've used display:none to make galleria behave more like a slideshow and it works just fine.

Re: typo in visual? [ Started by HansBKK in Tripoli : 1 replies ]

That is indeed a typo, thanks!

Re: Automatic anchor? REMOVE please! [ Started by Jayo in Galleria : 3 replies ]

do you have a live example?

Re: resize image 'code side' [ Started by kemkem in Galleria : 8 replies ]

why don't you just use CSS?
[code]
img {height:auto;width:640px}
[/code]

Re: Automatic anchor? REMOVE please! [ Started by Jayo in Galleria : 3 replies ]

did you try history:false ?

Re: Active state and custom thumbnails [ Started by endortrails in Galleria : 5 replies ]

Works for me:

http://www.tillskararakademin.se/aktuellt/2008/02/19/projekt-pa-ikea/

Re: Question about enabling thumbnail hover overlay effect [ Started by elid in Galleria : 1 replies ]

hi elid,

Galleria is not about presentation, even though I believe that the smooth transitions demonstrated in demo 1 itself has raised interest in the gallery.

Instead, galleria represents the core functionality of the gallery and allows for simple, custom effects using callbacks. Such effects are demonstrated in Demo 1. If you want similar effects, just copy-paste the source code from the demo and modify to suite your design.

david

Re: Galleria with mixed landscape and portrait pictures [ Started by edeltraut in Galleria : 6 replies ]

... or, you can always put the thumbnails on top!

Re: Galleria with mixed landscape and portrait pictures [ Started by edeltraut in Galleria : 6 replies ]

Hi edeltraut

Sure, you can resize the images using CSS. But generally, I recommend to use a server-side language, since browsers are generally not so good at resizing images.

Something like this:

[code]
#main_image {overflow:hidden}
#main_image img{height:450px; width:auto}
[/code]

...could get you started.

-david

Re: No image when gallery first loads and images size [ Started by rozmerlin in Galleria : 5 replies ]

http://devkick.com/talk/topic/3/galleria-faq/

Re: not working at all for me ??? [ Started by idgie23 in Galleria : 9 replies ]

You can track JS errors using firebug. I get a "startmotor is not defined" error on your site. Your code is full of dreamweaver javascripts and onload attributes in the HTML, I would clean that up and validate your javascript using firebug before implementing galleria.

david

Re: not working at all for me ??? [ Started by idgie23 in Galleria : 9 replies ]

you have at least one javascript error, try fixing that first.

Re: 2 instances per page [ Started by mark_yme in Galleria : 1 replies ]

http://devkick.com/talk/topic/3/galleria-faq/

Re: Using other then jQuery frameworks together with Galleria [ Started by kir in Galleria : 1 replies ]

Hi kir

Yes, I know that it might conflict with other frameworks. Not the plugin itself, but the way you invoke it. It is probably a good idea to use:
[code]jQuery(function($) {[/code] instead of the document.ready function.

Re: Giant Text in FF3 [ Started by conway98 in Tripoli : 3 replies ]

Yes, the .content class cannot be applied to the body tag itself. I should probably mention that in the docs...

Re: Giant Text in FF3 [ Started by conway98 in Tripoli : 3 replies ]

Hi conway98,

Do you get the same result when using tripoli.base.css, or it just the simple version. Also, how is it on the sample pages? Do you get big text there as well?

david

Re: Main Image - horiz alignment [ Started by oceano in Galleria : 3 replies ]

Using !important in an external CSS file or style tag should override any inline CSS. My suggestion was to apply the rule stated above somewhere in the CSS with the appropriate selector. I'm not sure it works in your case though...

Re: Main Image - horiz alignment [ Started by oceano in Galleria : 3 replies ]

[code]margin-top:0!important;[/code]

Re: Thumbnails load quicker than main image [ Started by endortrails in Galleria : 5 replies ]

What browser are you using?

Re: Position Main Image Relative to Thumbnails [ Started by reach4thelasers in Galleria : 3 replies ]

Hi reach4thelasers,

It sounds like you need to drop the position:absolute; on the containers. Try doing so or possibly change it to position:relative;

If that doesnt work, give us a link URL.

david

Re: request: overflow:visible on input (submits) for IE6/7 [ Started by maniqui in Tripoli : 1 replies ]

Good find, maniqui! I'll be considering it for the next release. Thanks!