- Issue description:
Hello @Max, I’m working with a Slider app and some slides are not positioning the title (bottom) in mobile. Could you please take a look?
Also, it would be fantastic to be able to set the title’s font size in mobile.
Thank you. - Link to the page with the widget in question:
- https://nlb.mirynickservices.com/
Apologies for this inconvenience!
I’ve shared your request with the devs and will update you once I hear back from them
To change the size of the title on mobile, use this code in the Custom CSS field on the Advanced tab of your widget’s settings:
@media (max-width: 500px) {
.eapp-slider-title-component {
font-size: 10px;
}
}
Thank you @Max, the mobile title font size works great.
We’ve fixed with the positioning of the title on mobile with this CSS code:
@media screen and (max-width:640px) {
.eapp-slider-slide-inner {
justify-content: flex-start !important;
}
}
Please check your widget and let me know if it’s fine now
Thank you @Max , it works on my iPhone portrait mode, not in landscape or tablets though.
Ah, I see. I am really sorry about that!
Our devs will review the code, and I’ll get back to you with the adjusted solution
Thank you @Max .
Hi @jfig14
We’ve increased the breakpoint from 640 px to 1024 px and everything should be fine now:
@media screen and (max-width:1024px) {
.eapp-slider-slide-inner {
justify-content: flex-start !important;
}
}
Please check your website and let me know if the issue is resolved