You are not logged in. Please login or register.
Active topics Unanswered topics
Juicebox v1.5.1 Released!
Search options (Page 178 of 235)
Try entering your Flickr settings into Flickr's own API Explorer to see how many (if any) images are returned. (You will need to use the Flickr User Id instead of the Flickr User Name for this.)
Also, please also see this Flickr FAQ for a few suggestions which may help:
Why aren't my photos appearing in searches or groups?
If you continue to experience difficulties, please post the URL to your gallery so that I can take a look and help further.
I am glad that you have been able to resolve your problem.
Thank you for posting back to let me know.
This has already been noted and logged as a bug which should be fixed in the next version.
Thank you for reporting, though.
A custom theme CSS file should be a modified version of the original 'web/jbcore/theme.css' file, pointed towards within the gallery's embedding code using the themeUrl configuration option (as documented in the Theming Guide).
If a themeUrl is used, then Juicebox will use the CSS file that the themeUrl points towards, instead of the original 'theme.css' file (which will not be read or used at all.)
Try setting up a test gallery with a themeUrl which points towards a blank CSS file.
The gallery will not be displayed at all, indicating that the original 'theme.css' file is not being loaded in the web page.
Please check your email. I have sent you a message.
Your gallery will resize dynamically with the size of the user's browser window as long as the gallery's own dimensions and the dimensions of all parent containers are expressed as percentages.
Otherwise, you can listen for a change in the size of the user's browser window, get the new window size from the browser and set a new appropriate size for the gallery dynamically using JavaScript as is done in the Resizable Gallery pages here.
It is certainly possible that the Expose theme is using some general CSS (for example, applying CSS rules to all instances of certain HTML elements rather than just to specific instances of them through use of classes or ids) which the gallery is inheriting and which is causing the problem.
However, I do not see any CSS in your web page which looks likely to be causing the problem with your Juicebox gallery's thumbnails.
Unfortunately, the Genesis Framework and Expose theme is not free so I am unable to download it and try it out for myself.
Make sure that your Genesis Framework and Expose theme are both up to date in case any bugs which were present in previous versions but which have since been fixed are not contributing to the problem.
You may need to edit the theme and use some trial and error to selectively load each external CSS and JavaScript file one at a time in your gallery's web page until you can narrow down the code which is causing the problem.
I am glad your icons are displaying OK now.
Thank you for posting back to let me know.
(1) Try temporarily disabling all plugins (other than WP-Juicebox) to see if this makes a difference. If your thumbnails display OK, then there may be a conflict between WP-Juicebox and another one of your plugins. Reinstate each plugin one by one (and check your gallery's thumbnails after each one) to see if you can find the cause of the problem.
Also, try temporarily reverting to the default WordPress theme to see if there is a possible conflict between WP-Juicebox and your current theme.
(2) Juicebox-Pro uses only one backgroundColor configuration option for both normal and fullscreen modes.
However, it is possible to have different color backgrounds for normal and fullscreen modes through use of the Juicebox-Pro API, JavaScript and CSS. Please see this forum post for details. Please note, however, that this would be difficult to implement within WP-Juicebox.
Here are a few things to check:
Make sure that your gallery uses the latest version of Juicebox-Pro (v1.3.2). Please see the Upgrading Juicebox page if necessary.
Try re-uploading your gallery's 'jbcore' folder to ensure that all files on your web server are present and correct.
Make sure that your web page uses a valid Doctype Declaration. Please see here for details.
Validate the code on your web page with the W3C Markup Validation Service and fix any HTML errors reported.
Make sure that your IE10 browser is not in Compatibility Mode.
Temporarily disable any extensions that you may have in your IE10 browser to see if this makes a difference.
Clear your browser's cache to ensure that your browser is fetching the most recent gallery files from your web server.
If none of the above helps, then the problem may be due to incorrect or missing MIME types on your web server (for the .eot and .woff icon font files in the 'jbcore/classic/fonts/' folder).
If you continue to experience difficulties, please post the URL to your gallery so that I can take a look and help further.
In my own tests, the adjustment I posted above (to reduce the number of lines displayed below each Gallery Index Page thumbnail) should work OK without any adverse side affects regarding thumbnail placement (though I have not tried every possible permutation of all options so cannot guarantee 100% success) and you are free to tweak your Showkase installation as desired.
As long as any CSS modifications you make are entered in your theme's 'custom.css' file (and you do not directly modify the source code of the program itself), then if you find any problems with the changes you make, you can easily change them back.
I notice that your gallery uses Juicebox-Lite v1.1.1.
Try upgrading your gallery to the latest version of Juicebox-Lite (v1.3.2) as many bugs have been fixed since v1.1.1 and upgrading might fix your problem without any further action.
For a full list of changes, please see the Version History.
For instructions on how to get the latest version of Juicebox-Lite and how to upgrade existing galleries, please see the Upgrading Juicebox page.
Also, try fixing the HTML errors on your gallery's web page.
You can validate the code on your page with the W3C Markup Validation Service and then fix any errors reported.
As you are specifying your gallery's dimensions as percentages, the aspect ratio of the gallery will depend on the dimensions of the user's browser window.
For the imageScaleMode configuration option, Juicebox-Lite uses the default value of SCALE_DOWN, which (as long as the main images are larger than the image area within the gallery) will display the images as large as possible within the image area in the gallery whilst maintaining their aspect ratio and without cropping.
If the aspect ratio of your images does not match that of the image area in the gallery, gaps above and below (or to the left and right) of the images may be seen.
Solutions would be to either:
(1) Define your gallery's dimensions using fixed pixel values rather than percentages to ensure that the aspect ratio of the image area in the gallery matches that of your images (no matter what the dimensions of the user's browser window are).
... or:
(2) Purchase Juicebox-Pro and change the imageScaleMode to FILL , STRETCH or NONE so that the images fill the image area (though in order to do so, images may be cropped).
Descriptions of the imageScaleMode configuration option values can be found in the Main Image section of the Config Options page.
Unfortunately all content of welcome and about pages disappeared and the upper half of contact too:(
If you want to remove the body text area from Juicebox gallery pages only, then use the following code in the '_themes/kosel/css/custom.css' file:
body.type-juicebox section.page-body {
display: none;
}
Moreover the gap on the gallery index page is still to big.
The gap beneath the thumbnails on the Gallery Index Page is to accommodate long gallery titles (which can wrap onto three separate lines before truncating). If you want only one line of text to be visible beneath each gallery thumbnail, try using the following code in the '_themes/kosel/css/custom.css' file. However, please note that I do not know what knock-on effects (if any) this may have.
body.type-galleryindex .content figcaption {
height: 1.25em;
}
Is there a way to control this individually for every page?
Each page has its own separate layout and the spacing on each page may be due to different elements (with different CSS classes).
If you want to customize your Showkase pages beyond what can be achieved in the interface, then I would recommend using your browser's developer tools to determine the element that you wish to change and then add custom CSS to the theme's 'custom.css' file.
I'll add it anyway, but I expect this will never be implemented since your developer doesn't seem to realize there's a problem in the first place.
I do not know whether or not this suggestion will be implemented but thank you for adding it to the Feature Requests thread where it will not be overlooked.
I'm open to any concrete suggestions.
Currently, as long as the navButtonIconColor and navButtonBackColor are both different from the gallery's background color, then the thumb dots should always be visible (whether they are unselected, hovered over or selected).
The home button is available now. It has a dotted white line below the icon when a gallery is not expanded. How can I avoid that?
I have notified the developers of this and it should be fixed in the next version of Showkase. In the meantime, add the following code to the '_themes/kosel/css/custom.css' file:
a.jb-go-back-icon {
border: none;
}
By the way: the not expanded galleries have this huge gap I mentioned before. The distance between the thumbs and the footer separation line is too big.
Thank you for providing the URL to your web site. The gap you mention is the area for the body text (which is your case, is empty). With nothing entered for the 'Page title' and in the text editor, the gap you see on your pages is the minimum height of the body text area.
If you simply do not want to display the body text area at all (removing the gap completely), add the following code to the '_themes/kosel/css/custom.css' file:
section.page-body {
display: none;
}
Please make sure that your gallery uses the latest version of Juicebox-Pro (v1.3.2).
If necessary, instructions on how to get the latest version and upgrade existing galleries can be found on the Upgrading Juicebox web page.
This should hopefully solve your problem. If not, then please post the URL to your gallery so that I can take a look.
(I have been unable to replicate the problem you have described using Juicebox-Pro v1.3.2 and the languageList template you posted.)
Try specifying your gallery's width as a fixed pixel value rather than as a percentage.
Otherwise, if you specify your gallery's width as a percentage, ensure that all the parent containers of your gallery have been given widths via CSS. (Juicebox needs to know what its own width should be a percentage of.)
Please see the note for Using Percentage Heights here. In your scenario, this may also apply to widths.
If you are using the Juicebox module for Drupal (rather than the Embedding in a Drupal Site instructions) and need support for it, please post in the Drupal forum where the author of the plugin (not ourselves) should be able to help you further.
It is difficult to see exactly what is going on in your web page as your layout is controlled by complex JavaScript and your 'juicebox-container' div is nested within 9 other divs (at least one of which has not been given any dimensions via CSS) and an article.
Make sure that all the parent containers of your gallery have been given dimensions via CSS and, as you are using percentage dimensions for your gallery, please see this note for Using Percentage Heights. (It may also apply to widths in your scenario.)
If all you want is for your gallery to not take up the entire width of the browser window and for it to be horizontally centered, try something like the following (changing the gallery height as required):
<!--START JUICEBOX EMBED-->
<script src="jbcore/juicebox.js"></script>
<script>
new juicebox({
containerId: 'juicebox-container',
galleryWidth: '80%',
galleryHeight: '100%'
});
</script>
<div id="juicebox-container" style="margin: 0 auto;"></div>
<!--END JUICEBOX EMBED-->
It looks like the first image in your gallery may be corrupt. (Something may have happened during the initial upload to cause the image to become corrupt.)
When I try to open it directly in a browser, the following message is displayed:
The image "http://www.jkmurtha.com/webgallery/images/A%20Happy%20Occasion.jpg" cannot be displayed, because it contains errors.
Try re-uploading the image (and its corresponding thumbnail) to your web server.
You can reverse the order of images by opening the plugin's 'wp-juicebox/config.php' file in a plain text editor and changing the two instances of 'order'=>'DESC' (in lines 34 and 36) to 'order'=>'ASC'.
The issue you describe (thumb dots becoming invisible) becomes a problem if either the navButtonIconColor or the navButtonBackColor is the same as the gallery background color so a workaround would be to ensure that all three colors differ slightly. I understand that you do not want to do this but it might be a compromise that will help other users reading this post.
Please provide separate configuration options!
Please post suggestions in the Feature Requests forum thread.
This keeps them all together and ensures that they are not overlooked. Thank you.
minor bug: the default spacing between dots also changed between versions.
The slight change in appearance is likely to have happened with the introduction of vector icon fonts in v1.3.0.
This seems to be a similar request to your query here.
It looks like you would like the size of the gallery to change dynamically depending on the size of the image currently being displayed. If this is the case, then my reply here should help.
If you want the gallery's dimensions to change with the size of the user's browser window (but not depending on the size of the image currently being displayed), then you will need to set your gallery's dimensions (and the dimensions of all parent containers of your gallery) to percentages. If there is a fixed value anywhere up the chain, then the dimensions of the gallery will become fixed, e.g. 100% x 100% x 100% x 800px = 800px, no matter what the size of the user's browser window is.
I changed the 'admin/plugins/juicebox/defaults.ini' as suggested but unfortunately nothing happend.
you would need to 'Rebuild' your gallery ('Edit Gallery Page -> Advanced Tab -> Rebuild') after making the change.
(I tested this fix myself and it works.)
Moreover some of the settings in the .ini don't match with my Showkase settings
The entries in the 'defaults.ini' file should not reflect your own gallery's settings. (This contents of this file will not change.) They are default values used to determine whether or not it is necessary to include a configuration option in a gallery's 'config.xml' file. (If a custom settings in a gallery matches the configuration option's default value, then Showkase knows that there is no need to enter the setting in the gallery's XML file.)
@watermark: I build all galleries in Showkase with Simpleviewer PRO and switched to Juicebuilder PRO then. Is there another way than building them again locally? I have a pic in /_library/files/watermark.png but this is not accepted as a watermark path:(
There is no way to watermark images in a Juicebox gallery created within Showkase.
You can enter a relative or absolute URL in the 'Watermark Url' text field for SimpleViewer-Pro galleries, though.
This is because the watermarking in SimpleViewer-Pro superimposes the watermark image on top of the main image at the time the gallery is displayed. The watermarking in JuiceboxBuilder-Pro embeds the watermark into the main images themselves when the images are resized at the time the gallery is created (not when it is displayed).
Finally, how can I reduce the distance between the last line of text/ thumbs and the footer?
Check that you do not have any blank lines in the body text of your gallery page. (Edit the gallery page, click in the text editor area and ensure that everything within the box has been deleted.)
If this does not help, please post the URL to your web page so that I can take a look. It would help to see the web page in question to know whether the space you are referring to is within the gallery itself (a Juicebox issue) or outside the gallery (a Showkase issue).
Please check your email. I have sent you a message.
Posts found: 4,426 to 4,450 of 5,851