Link to home
Start Free TrialLog in
Avatar of Bob Schneider
Bob SchneiderFlag for United States of America

asked on

JQuery Help

I am using a jquery slide show and I want to have all the images show up at a specific width (450px) rather than their actual width as it currently happens.  I have contacted the author but no response(yet).  I have tried to manage it using some inline styles and the internal styles, as well as fiddling around with the .js sheet, all to no avail.  I am just wondering if someone smarter than me (and there are lots of them on this site :) ) would help with this.  Here is the slide show I am using:

http://workshop.rs/projects/coin-slider/

Here is my <head> stuff:



<!--<script type="text/javascript" src="jquery-1.4.2.js"></script>-->
<script type="text/javascript" src="/home/coin-slider/coin-slider.js"></script>
<link rel="stylesheet" href="/home/coin-slider/coin-slider-styles.css" type="text/css" />

<script type="text/javascript">
    $(document).ready(function() {
        $('#coin-slider').coinslider({ width: 450, navigation: false, delay: 3000 });
    });
</script>

Here is my div:

                                          <div id="coin-slider">
                                              <a href="<%=Slides(0)%>" target="_blank"><img src="<%=Slides(0)%>" style="width:450px;"></a>
                                              ......
                                              ......
                                              <%For i = 1 To UBound(Slides) - 1%>
                                                      <a href="<%=Slides(i)%>" target="_blank"><img src="<%=Slides(i)%>" style="width:450px;"></a>
                                                <%Next%>
                                          </div>

Again, it really works well...I really like it...just need this last little adjustment
ASKER CERTIFIED SOLUTION
Avatar of hielo
hielo
Flag of Wallis and Futuna image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Bob Schneider

ASKER

Wow!  Incredibly helpful...