Thank you for the amazing updates.
In 'includes/class.output.php' for the Image functions, they have a class of "photo" but it appears the hard coded style is overriding any class settings.
Eveytime I do an update I have to make a manual change to this page to remove the hard coded style.
Could you please look at this issue for the next release.
eg.
public function getThumbnailImage( $atts = NULL )
From this
$out = '<img class="photo" alt="Photo of ' . $this->getFirstName() . ' ' . $this->getLastName() . '" style="-moz-border-radius:4px; background-color: #FFFFFF; border:1px solid #E3E3E3; margin-bottom:10px; padding:5px;" src="' . CN_IMAGE_BASE_URL . $this->getImageNameThumbnail() . '" />';
To this
$out = '<img class="photo" alt="Photo of ' . $this->getFirstName() . ' ' . $this->getLastName() . '" src="' . CN_IMAGE_BASE_URL . $this->getImageNameThumbnail() . '" />';
Thank you,
=-)