Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1099022

    I am using the Construction theme to build my website and I have read the other threads about image size, but none of the image sizes are working. Every time I use the sizes that have been given the picture goes blurry. Can you give me the image sizes specifically for the Construction theme?

    #1099475

    Hey sustainable-environments,

    Where can we see and reproduce the problem you are getting?

    Best regards,
    Rikard

    #1100178
    This reply has been marked as private.
    #1100473

    Hi sustainable-environments,

    Which images, in particular, are you referring to?

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Victoria

    #1100724
    This reply has been marked as private.
    #1101558
    This reply has been marked as private.
    #1102567

    Hi sustainable-environments,

    Please have a look at the tips posted here

    Best regards,
    Victoria

    #1106759

    Where can i change the image sizes in the code for the “Projects” section?

    #1106771

    Hi,

    This would have to be done via css.

    Best regards,
    Jordan Shannon

    #1106847

    Can you tell me what css file?

    #1107149

    Hi sustainable-environments,

    To change the image size there are 2 options to do this, either via plugin which is easier or via functions.php which requires some php code.
    The plugin option is to use this plugin: https://test.wordpress.org/plugins/simple-image-sizes/ after installing and activating it, go to Settings > Media.
    Then modify the featured_large (based on the image size above) then adjust its width and height and save, then click on the regenerate button.

    The code option, first requires a child theme and in its functions.php add this code:

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
      $size['featured_large'] = array('width'=>1500, 'height'=>630);
      return $size;
    }

    Just modify width and height (the values I put there are the default values) and save the file.
    Re-upload the image afterwards.

    Hope this helps.

    Best regards,
    Nikko

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.