• Resolved dedicatedinnovations

    (@dedicatedinnovations)


    On my album page the captions are cut off under each picture, not because there are too many words but the bottom half of the letters in each caption is cut off. I have a friend who knows a little about web pages and he had me inspect the element using my web browser and we figured out that if we un check the box “display: inline-block;” for the “epa-title wp-caption” it looks right, unfortunately I don’t know how to change that in the settings. Is this an option?

    Also I would like to un check the box “white-space: nowrap;” as this appears better on my page as well.

    Any suggestions? Issues can be seen here: http://meganandmarty2015.com/albums/our-album/

    https://wordpress.org/plugins/easy-photo-album/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author TV productions

    (@tv-productions)

    There is no setting for this, but you can change it by adding some CSS to your theme’s stylesheet.

    Open up style.css in wp-content/themes/<your theme name>/ and add the following css to the end of the file:

    .epa-album .epa-image .epa-title {
        white-space: normal !important;
        display: inline !important;
    }

    Save the file (and upload it, if needed).

    Note: when you update your theme, those changes will be lost.

    More info on editing WordPress files: http://codex.wordpress.org/Editing_Files

    Thread Starter dedicatedinnovations

    (@dedicatedinnovations)

    This worked. Thank you very much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Captions cut off on album page’ is closed to new replies.