Forum Replies Created
-
AuthorPosts
-
The theme update was just approved. Please download the latest version (8.0) and update Kindergarten.
Hi,
Try the plugin with WordPress’s default theme (Twenty Two or Twenty Fourteen) and see if it works. Sometimes this kind of issues are caused by the theme.
If it does not work even with WordPress theme, please provide a link to your website so I can take a look.
You’re welcome. Have a great day!
The problem appears because the album covers (the yellow squares) were designed to be displayed 4 per row, with the last item having
margin-right: 0;
for spacing reasons. But because on your website they don’t contain an image (they have only text: 1e leerjaar, 2e leerjaar etc.) they are narrower and so they are displayed more per row.Solutions:
Option 1: Add this in style.css:
.album-cover { width: 135px; }
Option 2: replace
.album-cover:nth-child(4n+4)
with.album-cover:nth-child(5n+5)
everywhere in style.cssFor example this:
.cp-gallery .item:nth-child(4n+4), .album-cover:nth-child(4n+4) { margin-right: 0; }
will become this:
.cp-gallery .item:nth-child(4n+4), .album-cover:nth-child(5n+5) { margin-right: 0; }
Option 3: Add images (album covers).
Hi,
Unfortunately, BD Cartoon Shout – the font used in menu and titles does not support diacritics.
We will release a theme update in 1-2 days and we will add a similar font that supports diacritics. It usually takes 24 hours or less for a theme update to be approved at ThemeForest, but it depends on how busy the reviewers are. The new font will solve your issue.
Hi,
I just tried logging in, but the access credentials do not work.
Please provide a link to your website so we can debug. Also tell me if you have made any css modifications.
I’m glad it’s ok now.
We thank you for the appreciative words. It’s really great receiving them.Answer to question 1:
We have answered you in an old post from January ( http://craftedpixels.net/support/forums/topic/add-different-galleries-on-each-pages/ ) that the purpose for which the gallery plugin was designed (a filterable multiple-album gallery) renders it impossible for using on multiple pages. It also cannot be modified to achieve that.
If you want a stand-alone gallery, you can use WordPress’ native gallery functionality.
Answer to question 2:
Sorry, support does not cover customizations.
Hi,
We just tested, modifying the “All Albums” text in plugins/cp-image-gallery/views/main.phtml on line 2 works.
We modified this:
<li><a href="#" class="sel" id="album_filter_all" onclick="switchAlbum('all');return false;">All Albums</a></li>
into this:
<li><a href="#" class="sel" id="album_filter_all" onclick="switchAlbum('all');return false;">Alle Alben</a></li>
Hi,
Bootstrap Shortcodes is a third-party plugin, for specific issues or questions with this plugin please use its author’s support forum here: https://wordpress.org/support/plugin/bootstrap-shortcodes.
We can only offer assistance with issues with our theme, or if you find an incompatibility between the theme and the Bootstrap Shortcodes plugin.
Thank you.
Yes. You can use the included .pot and .mo files to translate all or any part of the theme, or just modify the contact form directly, as you said.
None of the letters in the menu and titles are caps. This is how the font BD Cartoon Shout looks like (see here)
If you want caps in the menu, you can use the custom menu option in Appearance > Menus and manually write the labels in caps, or add this is style.css:
#sun-nav ul a { text-transform: uppercase; }
I’m glad it’s ok now. Have a great day!
No problem. I’m glad everything is ok. Have a great day!
-
AuthorPosts