It is possible with javascript. First add this to your bottom javascript box to make the Comment/Exif/Keywords box open by default:
//-------------------------------------------------------------------------------------
// Function to set initial lightBoxComment value to open
//
// The way this works is it sets the default value to open, but if the user
// closes it, then it will remember their value for the next day. After a day
// passes, it will default to open again.
//
// See http://www.dgrin.com/showthread.php?p=1368806 for support or questions.
//-------------------------------------------------------------------------------------
function InitLightBoxDefaultValueToOpen()
{
if ((SM.util.getCookie('lightBoxDefaultSet') != 1) || !SM.util.getCookie('lightBoxComments'))
{
SM.util.setCookie('lightBoxDefaultSet', 1, 1); // signify that we've set a default value so we won't keep setting it
SM.util.setCookie('lightBoxComments', 1, 1); // set it to show the light box comments
}
}
InitLightBoxDefaultValueToOpen();
Then add this to make the Comment/Exif/Keywords box show the Exif info when opened. Goes also in the bottom javascript box:
function lbShowDefaultDetailsSection(){if(lightBoxExifRequestComplete){if(lightBoxCommentsEnabled&&lightBoxOpenDetailsSection=='Exif'){lbToggleDetails('Comments','lightBoxCommentsLink',{});return;}
lightBoxOpenDetailsSection=lightBoxOpenDetailsSection=='Comments'?'Exif':lightBoxOpenDetailsSection;if(lightBoxExifEnabled&&lightBoxOpenDetailsSection=='Exif'){lbToggleDetails('Exif','lightBoxExifLink',{});return;}
lightBoxOpenDetailsSection=lightBoxOpenDetailsSection=='Exif'?'Keywords':lightBoxOpenDetailsSection;if(lightBoxKeywordsEnabled&&lightBoxOpenDetailsSection=='Keywords'){lbToggleDetails('Keywords','lightBoxKeywordsLink',{});}}}