• gnosisblog

    (@gnosisblog)


    Hi there, I have a couple of questions:

    Is there a way to configure all featured image sizes in the blog page? My images seem too big when I upload them.

    Also, if that’s possible: Is there also a way to configure diferent sizes depending on the page we’re in? For instance, is it possible to have a smaller image on the blog page, and when I open an article, be able to see it larger, but adjusted to text margins?

    And last question: I too happen to have a plugin to estimate reading time of each of my posts. Is there a way to make the estimated reading time meter appear between the title and the featured image?

    • This topic was modified 5 years ago by gnosisblog.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter gnosisblog

    (@gnosisblog)

    Up

    Theme Author Alexander Agnarson

    (@alxmedia)

    Hi!

    1) You can edit the featured image sizes in functions.php on line 69, preferably with a child theme:

    
    // Thumbnail sizes
    add_image_size( 'minimer-small', 200, 200, true );
    add_image_size( 'minimer-medium', 520, 292, true );
    add_image_size( 'minimer-large', 940, 529, true );
    add_image_size( 'minimer-list', 320, 320, true );
    

    When you have changed it, you need to run the regenerate thumbnails plugin once.

    2) Try adding this css for single featured image size:

    
    .single .entry-media { max-width: 740px; }
    

    3) You would need to edit single.php with a child theme and add the line of code on line 20, before where it says:

    
    <div class="entry-media">
    
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Featured Images Size’ is closed to new replies.