Tagged: ismael
-
AuthorPosts
-
April 19, 2017 at 3:32 pm #780016
Hi!
We have some troubles with the layout of the blog posts at the home page. We would like that the pictures from each post were displayed with the same size, but when the title of the post is shorter than 3 lines, the picture becomes larger. We have the preview size of the images set on Portfolio (495X400), but that seems to be ignored if the title of the post is short (as it happens with the first of the posts that are currently on our home page).
Could you tell us how can we solve this?
Thank you very much!
April 20, 2017 at 1:58 pm #780527Hey itcerp,
These images have different aspect ratio and different sizes. To get thumbnails that have the same size and same aspect ratio, you need images that are the same size and have the same aspect ratio.
Best regards,
VictoriaApril 20, 2017 at 3:32 pm #780574Hello Victoria,
Thank you, we’ve changed the preview to large size and now they look the same. Now, we would like to ask you, if there is a way to change the distribution of the title and the text below the thumbnails, so they are located at the same height ( referring to the posts at the home page).
Thank you!
Regards!
April 25, 2017 at 7:23 am #782684Hi,
Thank you for the update.
Please add this script in the functions.php file.
function ava_custom_script_fix(){ ?> <script> (function($){ function c() { var isMobile = ''; if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement) { isMobile = true; } else { isMobile = false; } if(isMobile || window.innerWidth < 767) return; // reset height $('.slide-entry-title, .slide-entry-excerpt').removeAttr('style'); // get an array of all element heights var elementHeights = $('.slide-entry-title, .slide-entry-excerpt').map(function() { return $(this).height(); }).get(); // Math.max takes a variable number of arguments // apply is equivalent to passing each height as an argument var maxHeight = Math.max.apply(null, elementHeights); // set each height to the max height $('.slide-entry-title, .slide-entry-excerpt').height(maxHeight); } $(window).on('debouncedresize', function() { c(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_fix');
Best regards,
IsmaelApril 25, 2017 at 10:58 am #782734Hi!
We tried adding the script at the end, but nothing happen (the titles and texts below the thumbnails continue at different heights). Any ideas?
Thank you very much! :)
- This reply was modified 7 years, 7 months ago by itcerp.
April 26, 2017 at 7:44 am #783292Hi!
It is working on our end. Please provide the login details here so that we can test the script.
Cheers!
IsmaelApril 26, 2017 at 10:42 am #783373We are going to try an alternative! We let you know if it doesn’t work!
Thank you very much for the help! :)
April 27, 2017 at 5:15 am #783775 -
AuthorPosts
- You must be logged in to reply to this topic.