To top align the images relative to the container, try finding the below line inside the .js file:
Code:
$slideimage.css({marginTop: (imgdimensions[1]>0 && imgdimensions[1]<setting.dimensions[1])? setting.dimensions[1]/2-imgdimensions[1]/2 : 0})
and change it to just:
Code:
$slideimage.css({marginTop: 0})
To make the background white and text black, inside the .js file, first, try doing a search and replace to swap all instances of the word "black" with "white". Then, to make the text black, change the code in red below:
Code:
.eq(1).css({color:'white'}).html(setting.closebutton + setting.longestdesc).end() //"descpanelfg" div
to "black" instead.
Bookmarks