• How does one go about making the featured image smaller? It comes out gigantic and I would like to use it so that it gets picked up when posting the Linkedin and Facebook, etc. Any thoughts on this?

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

Viewing 1 replies (of 1 total)
  • Hi,

    There are several methods to do this depending on how you actually want the image to behave (responsive etc). The easiest one by adding some custom css in the customizer. For example:

    .wp-block-image {
    width:100px; 
    }

    or

    .wp-block-image {
    	max-width:100px;
    }

    adjust the width (or height) to the amount of px you want it to be. Percentages are also possible.

    Edit
    When applying height you add hide overflow as well:

    .wp-block-image {
    	height:300px;
            overflow:hidden;
    }
    • This reply was modified 5 years, 9 months ago by Bianca.
Viewing 1 replies (of 1 total)
  • The topic ‘Featured Image size’ is closed to new replies.