I don’t know if the full version of TN3 works with Eazyest Gallery.
However, you can use the Eazyest Gallery slideshow full screen also. You have to add some stuff to your functions.php and to style.css:
Add this to your (child) theme functions.php:
function my_camera_options( $options ) {
$options['height'] = 'auto';
$options['portrait'] = false;
return $options;
}
add_filter( 'eazyest_gallery_camera_slideshow_options', 'my_camera_options' );
You can see all available options on http://www.pixedelic.com/plugins/camera/#opts_anchor
add this to your (child) theme style.css :
.fluid_container {
bottom: 0;
height: 100%;
left: 0;
position: fixed;
right: 0;
top: 0;
width: 100%;
z-index: 0;
}
.camera_wrap {
bottom: 0;
height: 100%;
left: 0;
margin-bottom: 0!important;
position: fixed;
right: 0;
top: 0;
}