• Hello,

    Is there a way to standardise the featured image size on this theme? If you set an image as the featured image, regardless of how much you crop/resize it, it still comes up as a huge image on the home screen. If you could help me the would be great.

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi, @ralphmat. It looks like the theme sets the image width at 100%:

    .entry-featuredImg img {
    	display: block;
    	width: 100%;
    }

    So you’d want to override that width value with some CSS of your own (either via a Child Theme or a plugin like Simple Custom CSS).

    Thread Starter ralphmat

    (@ralphmat)

    Hi @girlieworks

    Thank you for your response! The only issue is I’m really new to WordPress so I don’t really know what CSS is or how you edit it, even with the plugin! Is there anyway you could tell me or point me to somewhere that shows me!

    Sorry, I’m kind of useless with technology.

    Thanks again!

    @ralphmat, once you’ve installed the plugin, you’d go to Appearance → Custom CSS in your WordPress Dashboard.

    Then you’d add your CSS to that screen; for example, the following should allow your featured images to display at their normal size, but without spilling out beyond the boundaries if they’re too large:

    .entry-featuredImg img {
    	max-width: 100%;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘featured image size’ is closed to new replies.