• Resolved onpointco

    (@onpointco)


    Hello,
    The plug-in has been working fine until now.
    We pull episode images from the player feed. They are sized the same and formatted identically. However, the last image in the row is displaying much much larger than the others.

    We have not been able to identify any controls to account for it or modify it.
    Please help.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Serhiy Zakharchenko

    (@zahardoc)

    Hi @onpointco!

    Sorry to hear you encountered this problem and thank you for reporting it.
    We’ll try to fix it in the subsequent plugin releases.

    Meanwhile, please try the following steps:

    1. Go to Dashboard -> Appearance -> Customize
    2. Click Additional CSS
    3. Put the following CSS rules:

    div.ssp-recent-episodes-items {
    	grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    @media (max-width: 960px) {
    	div.ssp-recent-episodes-items {
    		grid-template-columns: repeat(3, minmax(0, 1fr));
    	}
    }
    
    @media (max-width: 768px) {
    	div.ssp-recent-episodes-items {
    		grid-template-columns: repeat(1, minmax(0, 1fr));
    	}
    }

    4. Click “Publish”

    Please let me know if it helps.

    Best regards,
    Sergiy, development team.

Viewing 1 replies (of 1 total)
  • The topic ‘Episode Image Size Displaying Incorrectly’ is closed to new replies.