Size of Featured image on blog page

Homepage Community Forums Optimal Theme Support Size of Featured image on blog page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2880
    shookfoil
    Customer

      Hi,

      Is there any way to change the size of the featured images when the excerpts of blog posts appear on the main blog page?  I would like just a small image to appear and it seems as though I therefore have to set a  featured image.  Is there another way?

      Thanks.

      #2884
      Wes
      Moderator

        Yes, if you look in your Genesis Theme Settings page under “Content Archives” you’ll need to check the box that says – “Include the Featured Image?” then select the image size. If you need to add a different image size other than what is available in the dropdown list, you can do this by adding the sizes in your functions file. You’ll see something like this –

        // Add new image sizes
        add_image_size( 'featured-img', 630, 320, TRUE );
        add_image_size( 'featured-page', 276, 140, TRUE );
        add_image_size( 'portfolio-thumbnail', 264, 200, TRUE );

        ….just copy/paste, rename, and change the sizes like this –

        add_image_size( 'blog-img', 250, 150, TRUE );

        #2945
        DanFelix
        Customer

          Are these sizes fixed options and all uploaded files should conform to them?  If an uploaded file fails to conform, is the pix scaled (distorted), cropped, or ignored?

          Thanks, Dan

          #2948
          Wes
          Moderator

            It should adjust to whatever you set the image to. Its a Genesis feature.

          Viewing 4 posts - 1 through 4 (of 4 total)
          • You must be logged in to reply to this topic.