Single Property Page
-
Hello,
Hope you guys are well.
I’m having trouble getting my single property page to look right. I can’t seem to find the right code to make it not look pixelated.
I’ve managed to find the gallery.php in
/wp-content/plugins/essential-real-estate/public/templates/single-property
and find the part of the code that controls the image quality. That is:
<div class=”single-property-image-main owl-carousel manual ere-carousel-manual”>
<?php
$gallery_id = ‘ere_gallery-‘ . rand();
foreach ($property_gallery as $image):
$image_src = ere_image_resize_id($image, 870, 420, true);
$image_full_src = wp_get_attachment_image_src($image, ‘full’);
if (!empty($image_src)) {
?>For some reason, when I increase the value of width and height or remove the crop, image looks okay but it becomes distanced (like 100px above) from the rest the gallery.
Could someone point me in the right direction?
Thanks
- The topic ‘Single Property Page’ is closed to new replies.