SOLVED
To change te grid look
<?php $entry->getImage(
array(
‘image’ => $atts[‘image’],
‘height’ => $atts[‘image_height’],
‘width’ => $atts[‘image_width’],
‘fallback’ => array(
‘type’ => ‘block’,
‘string’ => ”
),
‘style’ => $atts[‘image_opacity’] ? array( ‘opacity’ => $atts[‘image_opacity’], ‘filter’ => ‘alpha(opacity=’ . $atts[‘image_opacity’] * 100 . ‘)’ ) : array(),
)
); ?>
to
<?php $entry->getImage(
array(
‘image’ => $atts[‘image’],
‘height’ => $atts[‘image_height’],
‘width’ => $atts[‘image_width’],
‘fallback’ => array(
‘type’ => ‘block’,
‘string’ => ”
),
‘zc’ => 2,
‘style’ => $atts[‘image_opacity’] ? array( ‘opacity’ => $atts[‘image_opacity’], ‘filter’ => ‘alpha(opacity=’ . $atts[‘image_opacity’] * 100 . ‘)’ ) : array(),
)
); ?>
