Slider app, some slides are not positioning title (bottom) in mobile

  • 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/
2 Likes

Apologies for this inconvenience!

I’ve shared your request with the devs and will update you once I hear back from them :slightly_smiling_face:

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.

2 Likes

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 :slightly_smiling_face:

1 Like

Thank you @Max , it works on my iPhone portrait mode, not in landscape or tablets though.

2 Likes

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 :slightly_smiling_face:

1 Like

Thank you @Max .

2 Likes

Hi @jfig14 :wave:

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 :slightly_smiling_face:

1 Like