Merci Pierrick pour la maintenance du thème.
Offline
I am very sad that my fears about Thomas have been confirmed.
:-(
Thank you, Pierrick, for bringing the theme up to date and for ensuring that it will be updated in the future.
Offline
Hello Piwigonians. I am using the Bootstrap Darkroom theme in a piwigo-11.3.0 installation on my own server.
My question: The Bootstrap Darkroom theme has the "Hero Image" feature. I know anything is possible, but is there a reasonable way of having that Hero Image be dependent on which album is being displayed? Example: When the album named "Girls" is selected, the Hero Image would be a girl above the grid view; "Boys" album shows a boy; "Animals" album shows an animal as the Hero Image... and so on.
Or, perhaps I am wishing for something which a different theme has already incorporated. You people are the experts so please do your magic!
Offline
What is the correct way to change the PhotoSwipe options? Specifically, I want to turn off the transitions for the caption and menus so the always stay on. Extra credit: I would like to leave the transitions, but keep the caption always on.
Piwigo 11.3.
Thanks!
Offline
Apologies if I am missing something obvious, but how do I get the albums to display in the native orientation (portrait or landscape) of the album thumbnail?
I don't really like the cropped images...
Thanks in advance!
Offline
Hi,
Like written in the German Forum I would really appreciate an option to show the album-descriptions in the mobile version of the bootstrap darkroom theme. There would be enough space to include this:
https://www.icloud.com/iclouddrive/0wSk … go_shared_
I also realized that this is already implemented in the desktop list-view of the bootstrap darkroom theme, just the mobile theme doesn’t have this option yet.
Offline
Hi
I like Bootstrap Darkrooms Hero Image a lot. Only for my website I would prefer a sharp background image. I managed to eleminate the shade but not the blur effect. Does anybody know how I can eliminate the blur effect?
Thanks a lot
roxane
Offline
ps: the same image is in the gallery (even fullscreen) sharp and as hero image or jumbotron blur; in custom css I wrote:
.jumbotron{
background-image:url("https://f.....jpg");
background-position:35%;
background-repeat: no-repeat;
background-size: cover;
padding:0;
}
Last edited by roxane (2021-09-28 22:58:30)
Offline
Why does 2.4.6 show as the latest version within the configuration settings (on 11.5.0) but 2.5.0 shows as the latest here.
Do I need to manually download/install 2.5.0 before moving to v12 or is it actually up to date and just some kind of bug? I'm holding off on v12.1 as long as possible for extensions to be updated but thought I'd ask anyway.
Offline
Hi @teekay not planed to upgrade Bootstrap from 4.3.1 to latest version 4.6.1 ?
Offline
Pierrick is in charge of this theme maintenance now. Read this : https://piwigo.org/forum/viewtopic.php? … 05#p180005
Offline
Katryne wrote:
Pierrick is in charge of this theme maintenance now. Read this : https://piwigo.org/forum/viewtopic.php? … 05#p180005
aaarrch! Really bad news :( sorry
Offline
Hello everyone, this is my first post here. I've discovered Piwigo a few months ago and I'm absolutely satisfied with it. I have the Bootstrap Material Red theme on my gallery and I'm also very happy with it but my ignorance regarding programming languages makes it a bit difficult for me to customise it.
I've been searching for a long time how to remove this kind of shadow that surrounds the albums and photos but I didn't find a solution to it. I would be very grateful if you could help me to solve this. I add some screenshots for clarify what I'm saying (maybe I didn't express myself very well). If you want to see my gallery code here is the link to it: https://marcostrain.com/photos/
Regards,
Marcos
Offline
There is a box-shadow specified in the css.
:
/* Ligne 24 */ .placeholder > img, #theImage > img, #theImage #video-modal > .embed-responsive, .col-thumbnail > div > img { box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; }
Use the plugin Local File Editor to modify it. (Tab : css). Try this :
.placeholder > img, #theImage > img, #theImage #video-modal > .embed-responsive, .col-thumbnail > div > img { box-shadow: none; }
If it is not enough you may add ! important this way :
.placeholder > img, #theImage > img, #theImage #video-modal > .embed-responsive, .col-thumbnail > div > img { box-shadow:none!important; }
Offline
Thank you very much for your answer. The problem is that I don't even know how to edit the CSS. I found this page where is more or less explained but I can't find the things on my Piwigo admin page. I have Piwigo installed on a server with CPanel Installatron.
Katryne wrote:
There is a box-shadow specified in the css.
:Code:
/* Ligne 24 */ .placeholder > img, #theImage > img, #theImage #video-modal > .embed-responsive, .col-thumbnail > div > img { box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; }Use the plugin Local File Editor to modify it. (Tab : css). Try this :
Code:
.placeholder > img, #theImage > img, #theImage #video-modal > .embed-responsive, .col-thumbnail > div > img { box-shadow: none; }If it is not enough you may add ! important this way :
Code:
.placeholder > img, #theImage > img, #theImage #video-modal > .embed-responsive, .col-thumbnail > div > img { box-shadow:none!important; }
Offline