
How can I make this responsive ? - Slideshow Management
How can I make this responsive ?
Very nice extension but it does not show good when using a mobile. How can you add this ? Thanks 

-
- Registered User
- Posts: 6
- Joined: Thu Aug 11, 2022 10:42 pm
Re: How can I make this responsive ?
This extension has been designed to be compatible with phones (see the screenshots). Please send me a snapshot describing your problem.
-
- Registered User
- Posts: 39
- Joined: Wed Dec 01, 2021 4:15 pm
- Location: Viet Nam
- Name: Huynh Buu Tam
Re: How can I make this responsive ?
Hi Images are compatible on mobile but distorted : the images are all stretched in height.
How to optimize the rendering and keep the aspect ratio of the image ?
See on my website : www.infohac.com and attach files
Thank you for the help
How to optimize the rendering and keep the aspect ratio of the image ?
See on my website : www.infohac.com and attach files
Thank you for the help
-
- Registered User
- Posts: 6
- Joined: Thu Aug 11, 2022 10:42 pm
Re: How can I make this responsive ?
Hi maley, a similar thread has been created here, please check if it solves your problem
-
- Registered User
- Posts: 39
- Joined: Wed Dec 01, 2021 4:15 pm
- Location: Viet Nam
- Name: Huynh Buu Tam
Re: How can I make this responsive ?
Thanks.huynhbuutam wrote:Hi maley, a similar thread has been created here, please check if it solves your problem
yes I saw the post but it does not answer the problem because the image is truncated with this modification of the CSS.
You can see the result in the attachment.
I would like the slide to be displayed in full.
It would rather manage the display on mobile with a dedicated CSS, like the extension "headerbanner" from "hifikabin"
Thanks a lot

-
- Registered User
- Posts: 6
- Joined: Thu Aug 11, 2022 10:42 pm
Re: How can I make this responsive ?
Have you tried disabling the Image navigator?
Note: The latest commit on Github fixed some mobile issues, you can try it.
https://github.com/huynhbuutam/phpbb-ex ... management
Note: The latest commit on Github fixed some mobile issues, you can try it.
https://github.com/huynhbuutam/phpbb-ex ... management
-
- Registered User
- Posts: 39
- Joined: Wed Dec 01, 2021 4:15 pm
- Location: Viet Nam
- Name: Huynh Buu Tam
Re: How can I make this responsive ?
The image navigator is already disabled
I have already installed the 1.01 version founded on github
Another idea ? Thank for your response
I have already installed the 1.01 version founded on github
Another idea ? Thank for your response
-
- Registered User
- Posts: 6
- Joined: Thu Aug 11, 2022 10:42 pm
Re: How can I make this responsive ?
Hi maley, if you just want to keep the aspect ratio of the image, follow these steps:
- Open:
- Find:
- Replace-with:
- Reload the page to see the changes (on Windows, press Ctrl + F5)
- Open:
./tamit/slideshow/styles/prosilver/theme/tamitslideshow.css
- Find:
background-size: 100% 100%;
- Replace-with:
background-repeat: no-repeat; background-position: center; background-size: auto;
- Reload the page to see the changes (on Windows, press Ctrl + F5)
-
- Registered User
- Posts: 39
- Joined: Wed Dec 01, 2021 4:15 pm
- Location: Viet Nam
- Name: Huynh Buu Tam
Re: How can I make this responsive ?
Hi huynhbuutam
Thank you for the answer.
Here is the CSS code with the modification:
but the result is always the same. The slide is truncated on the left and on the right.
What I would like is for the image to be adjusted in height to display the entire width of the slide when the user is on his mobile.
Is it possible ?
Sorry to bother you with this.
Thanks a lot
Thank you for the answer.
Here is the CSS code with the modification:
/* ============ Slides ============ */
.slideshow-slides {
height: 0;
opacity: 0;
transition: all 1s ease;
overflow: hidden;
background-size: auto;
background-position: center;
background-repeat: no-repeat;
position: relative;
}
but the result is always the same. The slide is truncated on the left and on the right.
What I would like is for the image to be adjusted in height to display the entire width of the slide when the user is on his mobile.
Is it possible ?
Sorry to bother you with this.
Thanks a lot
-
- Registered User
- Posts: 6
- Joined: Thu Aug 11, 2022 10:42 pm
Re: How can I make this responsive ?
Every time you change a property in CSS, you need to force the browser to fully reload the page by pressing Ctrl+F5 several time
Please note that you cannot make the image fit both sides (width and height) without breaking the aspect ratio of the image, since the height of the image container is fixed (and we should not make it resizable), while the width is resizable
You will probably need to use
Please note that you cannot make the image fit both sides (width and height) without breaking the aspect ratio of the image, since the height of the image container is fixed (and we should not make it resizable), while the width is resizable
You will probably need to use
background-size: 100% auto;
, try it-
- Registered User
- Posts: 39
- Joined: Wed Dec 01, 2021 4:15 pm
- Location: Viet Nam
- Name: Huynh Buu Tam
Re: How can I make this responsive ?
Ok understand now. Thanks for your help. Byethe height of the image container is fixed and we should not make it resizable
-
- Registered User
- Posts: 6
- Joined: Thu Aug 11, 2022 10:42 pm