
Originally Posted by
bubbadan
OK 3 hours of searching and cannot find how to fix the size of the banner?
The banners should be 440 width and 200 height
They come out MUCH larger on the site
Actually, this has been asked before, I remember answering... But, I have no idea where that post is, plus it might be difficult to realize it's the same issue.
Your site is using a fluid width layout, meaning you don't have a fixed width as most sites do. Your site will expand over the entire screen which is IMHO a totally unfriendly solution. For example, I have a 24" screen and I literally have to move my head left and right to get all of your content... 
Anyway, the problem is with your fluid layout. ZX Slideshow is responsive meaning it will adapt to it's parent container dimensions. Since your parent container doesn't have any specified dimensions and is meant to fill in all the available area, ZX Slideshow will inherit that and will do the same. A quick and dirty solution would be to manually specify the dimensions of the slideshow in your index_home.css, something like this:
Code:
.slider-wrapper {
width:440px;
height:250px; /* might need some adjustment */
margin: 0 auto; /* this is used to center the slideshow */
}
A better solution would be to set your template's max-width, but perhaps you prefer the fluid layout...
Bookmarks