• I love this theme, but I encounter problems I can’t figure out how to solve by myself…
    I wonder if someone can help me:
    Why the images in certain posts (but not others) both on the homepage and in the entry itself once clicked in the post (see sample website) are cropped and not showing in the full square? Is there a CSS I can use to always show the full and complete image? And in some there is a hover animation function I’d like to disable.

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

Viewing 1 replies (of 1 total)
  • Theme Author alexvtn

    (@alexvtn)

    Hi @maalin
    thank you

    you could replace the default images size, please use the following code inside a new child theme

    function suevafree_thumbnail_ovverride() {

    add_image_size( ‘suevafree_thumbnail_s’, suevafree_setting(‘suevafree_thumbnail_s_width’, ‘360’), suevafree_setting(‘suevafree_thumbnail_s_height’, ‘182’), FALSE );
    add_image_size( ‘suevafree_thumbnail_l’, suevafree_setting(‘suevafree_thumbnail_l_width’, ‘750’), suevafree_setting(‘suevafree_thumbnail_l_height’, ‘379’), FALSE );
    add_image_size( ‘suevafree_thumbnail’, suevafree_setting(‘suevafree_thumbnail_width’, ‘1170’), suevafree_setting(‘suevafree_thumbnail_height’, ‘690’), FALSE );
    add_image_size( ‘suevafree_large’, 449,304, FALSE );
    add_image_size( ‘suevafree_medium’, 290,220, FALSE );
    add_image_size( ‘suevafree_small’, 211,150, FALSE );

    }

    add_action( ‘after_setup_theme’, ‘suevafree_thumbnail_ovverride’, 99 );

    Please let me know

    Alex

Viewing 1 replies (of 1 total)
  • The topic ‘Issues with Images size, cropping, format, ‘hover animation’’ is closed to new replies.