How can I reduce the font size in the column-based photo gallery for mobile behavior?

When I hover over the image, the title and description should appear within the image. However, when viewed on a smaller screen, the text does not adjust and remains too large for the image.
Example:
Captura de pantalla es

Link to the page with the widget in question: http://ivanz35.sg-host.com/

1 Like

Hi @Ivan_Zavala :wave:

I’ve shared your request with our dev team. I’ll let you know once I receive a response from them :wink:

To adjust the font size on mobile, try to add this code to the Custom CSS field on the Style tab of your widget’s settings:

@media (max-width: 480px) {
  .eapp-photo-gallery-info-title {
    font-size: 16px;
  }
  
  .eapp-photo-gallery-info-description {
    font-size: 12px;
  }
}

Check it out and let me know if it helped :slightly_smiling_face: