• How do I get my image sizes to be more uniform? I know I have some small images in my projects but for the most part they are all large enough. I want them ALL to be the same size. If you look at my portfolio home page you’ll notice there are a few that aren’t the same size.

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

Viewing 1 replies (of 1 total)
  • Moderator Kathryn Presner

    (@zoonini)

    @brittanieshey You could make sure the originals all have the same aspect ratio.

    Or if you want to force the same height on larger screens (when the projects are in three columns) you could add this to your child theme, adjusting the height value as you like:

    
    @media screen and ( min-width: 800px  ) {
      .page-template-portfolio-page .attachment-sketch-landscape {
         height: 250px;
         object-fit: cover;
         overflow: hidden;
         position: relative;
      }
    }

    Let me know how it goes.

Viewing 1 replies (of 1 total)
  • The topic ‘Uniform image sizes’ is closed to new replies.