It appears that the slideshow is controlled by the mod_jaslideshow2.css stylesheet in the JA Norite template CSS directory. After changing my mod_jaslideshow parameters to my desired image size and setting other configuration settings appropriately, I modified the following css settings in the mod_jaslideshow2.css file (note the original settings which I commented out with /* original_code */ before replacing them with my new settings…):
.ja-slide-main-wrap {
overflow: visible;
/* padding-bottom: 55px; */
padding-bottom: 0;
position: relative;
}
.ja-slide-main {
/* height: 350px; */
height: 240px;
overflow: hidden;
position: absolute;
/* right: -10px; */
right: 0;
/* top: -10px; */
top: 0;
/* width: 480px; */
width: 960px;
z-index: 1;
}
.ja-slide-item {
/* background: url(../images/window.png) no-repeat left top; */
display: block;
float: left;
margin: 0;
overflow: hidden;
/* padding: 35px 10px 20px; */
padding: 0;
position: relative;
}
Hope this helps someone. It would be good to get comments from the Joomlart folks as to whether this method is what they would recommend for accomplishing this, or not. It’s working for me.
Good luck!