Did you ever solve this problem?  What you described is almost always
the result of a JavaScript error but there is nothing wrong with the
code you posted..  Can you post a link?

Mike


On Aug 13, 3:10 pm, graphfixpunk <[EMAIL PROTECTED]> wrote:
> Ive been having problems with jquery cycle working and all the images
> just display all at once one after the other.
>
> here is the relevent html
>
>         <link href="css/style.css" rel="stylesheet" type="text/css" />
>         <script type='text/javascript' src="js/jquery-1.2.6.js"></script>
>         <script type='text/javascript' src="js/jquery.cycle.all.js"></script>
>         <script type='text/javascript'>
>                 $('.pics').cycle({
>                           fx:    'fade',
>                           speed:  2500
>                         });
>         </script>
> </head>
> <body>
>
> <div class="pics">
>     <img src="images/1.png" alt="1"/>
>     <img src="images/2.png" alt="2"/>
>     <img src="images/3.png" alt="3"/>
> </div>
>
> and the css
>
> .pics {
>     height:  232px;
>     width:   232px;
>     padding: 0;
>     margin:  0;
>     }
>
> .pics img {
>     padding: 15px;
>     border:  1px solid #ccc;
>     background-color: #eee;
>     width:  200px;
>     height: 200px;
>     top:  0;
>     left: 0;
>     display:block;
>
> }
>
> can any one point me in the right direction

Reply via email to