Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #2800
    mgerney
    Member

    I would like to change the slider dimension height to 450 from the default 313. I figured out how to increase the size in the CSS file -so the “container” shows as larger, but the picture isn’t. Can I do this, and if so, do I have to edit a php file that automatically resizes the images? Thanks.

     

    #2831
    Sakin
    Keymaster

    @mgerney: Image size is define in functions.php in simplecatch_setup() function.

    See this line
    add_image_size( 'slider', 976, 313, true); // uses on Featured Slider on Homepage Header

    Replace with
    add_image_size( 'slider', 976, 450, true); // uses on Featured Slider on Homepage Header

    But please make this changes in your Child theme as if you just update the core theme then when there is update it will be reverted back. This make you change again and again when there is update.

    After changing the code. You need to install the Regenerate Thumbnails Plugin and Regenerate your thumbnails.

    #2834
    mgerney
    Member

    Thanks for the quick response. This worked really well.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Slider Dimensions’ is closed to new replies.