I think you need swiss_2.js:
http://home.comcast.net/~jscheuer1/s...les/swiss_2.js
It adds some new properties:
- slides#.previous_value - defaults to ' << '
- slides#.next_value - defaults to ' >> '
- slides#.move_desc_up - set to 1 to move descriptions up for shorter images, requires position:relative; and z-index:100; for #imgdsc$ style selector.
- slides#.desc_pic_width - set to 1 for description container (#desc0) width to follow changing image widths
- slides#.count_prefix - text to prefix the count, defaults to 'Viewing Image: '
- slides#.count_sep - text to separate the two count numbers, defaults to 'of'
With those new properties and the new style hooks still in effect, use these styles (only these):
Code:
#outer0 { left: 4px; }
#show0 {
width:510px;
}
#controls0 {width: 505px; float: left; text-align: center; margin-top: 13px; }
#prev0, #next0 { background-color: #fff; color: #000; border: none; padding: 0 35px; }
#desc0 { position: relative; top: -500px; left: 510px; width: 270px; height: 0; overflow: visible;color: #000; font-size: 72%; font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; width: 270px; padding-left: 12px; text-align: left;}
#counter0 { font-size: 72%; font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; position: absolute; top: 600px; left: 238px; width: 30px; height: 12px; }
#counter0 * {font-weight: normal;}
#thecnt0 { font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; width: 30px; height: 12px; }
Add this IE conditional stylesheet:
Code:
<!--[if IE]>
<style type="text/css">
#controls0 { margin-top: 8px; }
</style>
<![endif]-->
And use these properties (only these):
Code:
//optional properties for these images:
slides.no_added_linebreaks=1; //use for no added line breaks in formatting of texts and controls
slides.counter=1; //use to show image count
slides.no_auto=1; //use to make show completely user operated (no play button, starts in stopped mode)
slides.button_highlight='#ffffff';
slides.button_depressed_highlight='#ffffff';
slides.border=0;
slides.previous_value = '<'; // defaults to ' << '
slides.next_value= '>' // defaults to ' >> '
slides.count_prefix = ' '; // text to prefix the count, defaults to 'Viewing Image: '
slides.count_sep = ' /' // text to separate the two count numbers, defaults to 'of'
Bookmarks