-
AuthorPosts
-
May 9, 2019 at 5:37 pm #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?
May 11, 2019 at 4:58 am #1099475Hey sustainable-environments,
Where can we see and reproduce the problem you are getting?
Best regards,
RikardMay 13, 2019 at 5:52 pm #1100178This reply has been marked as private.May 14, 2019 at 11:41 am #1100473Hi 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.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- 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 ). - Click ” Submit “.
- 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,
VictoriaMay 14, 2019 at 6:22 pm #1100724This reply has been marked as private.May 16, 2019 at 7:16 pm #1101558This reply has been marked as private.May 20, 2019 at 9:09 pm #1102567Hi sustainable-environments,
Please have a look at the tips posted here
Best regards,
VictoriaJune 3, 2019 at 5:11 pm #1106759Where can i change the image sizes in the code for the “Projects” section?
June 3, 2019 at 6:13 pm #1106771Hi,
This would have to be done via css.
Best regards,
Jordan ShannonJune 3, 2019 at 10:22 pm #1106847Can you tell me what css file?
June 4, 2019 at 3:48 pm #1107149Hi 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 -
AuthorPosts
- You must be logged in to reply to this topic.
