Change size of images in BLOG item in muffinbuilder

Hello, I want to change the size of images shown in blog item - they ar too big (about 400x300) half sizewould be great :)

Comments

  • Hi,

    all sizes for images cab be changed only in functions/theme-functions.php file where add_image_size() functions are.
  • thaks for your respond, i found this, what shouldi Change or add?

     * Post Thumbnails
     * --------------------------------------------------------------------------- */
    if ( function_exists( 'add_theme_support' ) ) {
    add_theme_support( 'post-thumbnails' );
    set_post_thumbnail_size( 260,  146,  false ); // admin - featured image
    add_image_size( '50x50', 50,   50,   false ); // admin - lists
    add_image_size( 'slider-content', 890,  470,  true  ); // slider - content
    add_image_size( 'blog', 576,  450,  true  ); // blog - list
    add_image_size( 'blog-vertical', 576,  1200, false ); // blog - vertical
    add_image_size( 'blog-single', 1200, 480,  true  ); // blog - single
    add_image_size( 'blog-navi', 80,   80,   true  ); // blog - sticky navigation, widget
    add_image_size( 'portfolio', 576,  450,  true  ); // portfolio
    add_image_size( 'portfolio-list', 1160, 450,  true  ); // portfolio - list
    add_image_size( 'portfolio-mf', 960,  750,  true  ); // portfolio - masonry flat
    add_image_size( 'portfolio-mf-w',   960,  375,  true  ); // portfolio - masonry flat wide
    add_image_size( 'portfolio-mf-t',   480,  750,  true  ); // portfolio - masonry flat tall
    add_image_size( 'testimonials', 85,   85,   true  ); // testimonials
    }
  • Change lines related with blog (looks like you mean blog-list) and then upload new images or use https://wordpress.org/plugins/force-regenerate-thumbnails/ to change images. You must do it yourself and test because we do not offer files customizations as after any modification only website developer is responsible for website and issues.
  • It worked, but its still not good, just look here:

    its called:
    class="image_frame post-photo-wrapper scale-with-grid


  • Images are not big enough and that's why they don't look as you want. Images must have definitely larger width. Or if you want to use current size then we recommend to remove border around images and links that shows on hover.
  • borders can stay, but I would like to definately remove the hover, can you help me withthe code?
  • Yes, this is css so we can give it to you. To remove this hover effect, please use below css:
    .image_frame .image_wrapper .image_links { display: none; }
    .image_frame .image_wrapper .mask { display: none; }
Sign In or Register to comment.