Table I-A1 sets the default width of any wwp+ display.
Use auto for responsive themes.
You can overrule in the shortcode with size="500"
( for 500 pixels ) or size="0.6"
for 60%.
Thumbnail frame size is settable in Table I-C3 and C4.
Thumbnail aspect is settable in Table I-C2.
Edit wppa-slideshow.php, line 623:
if (is_feed()) {
$wppa['out'] .= wppa_nltab().'<div style="'.__wcs('wppa-box').__wcs('wppa-nav').'">';
}
else {
$wppa['out'] .= wppa_nltab('+').'<div class="wppa-box wppa-nav" style="text-align:center; '.__wcs('wppa-box').__wcs('wppa-nav').'height:'.$height.'px;">';
$wppa['out'] .= wppa_nltab().'<div style="float:left; text-align:left; cursor:pointer; margin-top:'.$topmarg.'px; width: '.$fw.'px; font-size: '.$fs.'px;">';
Change to:
if (is_feed()) {
$wppa['out'] .= wppa_nltab().'<div style="'.__wcs('wppa-box').__wcs('wppa-nav').'">';
}
else {
$height += '20'; // adjust to the height of your text
$wppa['out'] .= wppa_nltab('+').'<div class="wppa-box wppa-nav" style="text-align:center; '.__wcs('wppa-box').__wcs('wppa-nav').'height:'.$height.'px;">';
$wppa['out'] .= 'Text'; // Your text above the filmstrip
$wppa['out'] .= wppa_nltab().'<div style="float:left; text-align:left; cursor:pointer; margin-top:'.$topmarg.'px; width: '.$fw.'px; font-size: '.$fs.'px;">';
First update to 5.2.7 !!