Home Forums Theme support Justice theme – Team page images are huge Reply To: Justice theme – Team page images are huge

Hi,

you can edit the file “team-entry.php”, go to line 60 and replace this:

<div class="team_entry_img"><img src="<?php echo sevenleague_image_url($post->ID, load_option("team_thumbnail") ); ?>" alt="" /></div>

with this:

<div class="team_entry_img"><img src="<?php echo $large_image_url; ?>" alt="" /></div>

This change will display the original image in the team entries.

The second issue you can solve when you go to WordPress Admin -> Appearance -> theme Options -> General -> Extra CSS Content and add this code:

.single-team .post-content img {
  width: auto;
}

Sorry for this issue, we will fix this with the next update.