Thank you for your response. However, I took out one, then the other, then both. It still is stacking the slides. Any other ideas? Sorry I really don't know much about JQuery.
I added it right after the first script but Dreamweaver showed a PHP Scripting error if I so I added it like below and now I have the 2 of each slides loading on top of each other. I am not sure what scriptaculous even does so should I just remove it?
So now it looks like AnythingSlider should be running, but it could just be the above error preventing further down code from running, so we'll just need to see if the above change fixes everything or what the next step needs to be.
The noConflict code still needs to be the next line after the jquery script. As it is now, the quovolver script won't exist when it's run because it is loaded before the noConflict.
Since this is just a test site. If you know what script is conflicting. I will just strip it out. I am just trying to update the site until the client has me do a complete rebuild. Thank you.
Then I noticed that the AnythingSlider.css file was missing, so I added it and then I had to set the slider dimensions to 600x400 because it's set to 570x190 for some reason
#slider-210 { width: 600px; height: 400px; }
The default stylesheet I used really messed up the slider because of the external arrows - it was shifted to the right, but it was working. So, I'm just guessing you already have an AnythingSlider theme ready, it just that the link to it isn't there.
ok. I forgot that I uninstalled and reinstalled anything slider. so all the settings were back to default. I set them to what I wanted and the slides are now rotating, but well below the window. probably need to work on css style now. thanks for all your help. have a great weekend.
I still don't see an anytingslider.css file. Also setting the slideshow with "playRtl" set to true, does more than just switch the slideshow direction - it messes around with the page rtl (right-to-left) settings for languages that are read from right-to-left. So, you should set that to false.
/***************************** SET DEFAULT DIMENSIONS HERE *****************************/ /* change the ID to match your slider */ #slider { width: 700px; height: 390px; list-style: none; /* Prevent FOUC (see FAQ page) and keep things readable if javascript is disabled */ overflow-y: auto; overflow-x: hidden; }
/***************** SET COLORS HERE *****************/ /**** Default state (no keyboard focus) ****/ /* slider window - top & bottom borders, default state */ div.anythingSlider .anythingWindow { border-top: 3px solid #777; border-bottom: 3px solid #777; } /* Navigation buttons, default state */ div.anythingSlider .anythingControls ul a.cur, div.anythingSlider .anythingControls ul a { background: #777; color: #000; } /* start-stop button, stopped, default state */ div.anythingSlider .start-stop { background-color: #040; color: #fff; } /* start-stop button, playing, default state */ div.anythingSlider .start-stop.playing { background-color: #800; } /* start-stop button, default hovered text color (when visible) */ div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover { color: #ddd; }
/**** Active State (slider has keyboard focus) ****/ /* slider window - top & bottom borders, active state */ div.anythingSlider.activeSlider .anythingWindow { border-color: #7C9127; } /* Navigation buttons, active state */ div.anythingSlider.activeSlider .anythingControls ul a.cur, div.anythingSlider.activeSlider .anythingControls ul a { background-color: #7C9127; } /* start-stop button, stopped, active state */ div.anythingSlider .start-stop { background-color: #080; color: #fff; } /* start-stop button, playing, active state */ div.anythingSlider .start-stop.playing { background-color: #d00; } /* start-stop button, active slider hovered text color (when visible) */ div.anythingSlider .start-stop:hover, div.anythingSlider .start-stop.hover { color: #fff; }
/*********************** COMMON SLIDER STYLING ***********************/ /* Overall Wrapper: 45px right & left padding for the arrows, 28px @ bottom for navigation */ div.anythingSlider { display: block; margin: 0 auto; overflow: visible !important; /* needed for Opera and Safari */ position: relative; padding: 0 45px 28px 45px; } /* anythingSlider viewport window */ div.anythingSlider .anythingWindow { overflow: hidden; position: relative; width: 100%; height: 100%; } /* anythingSlider base (original element) */ .anythingBase { background: transparent; list-style: none; position: absolute; overflow: visible !important; top: 0; left: 0; margin: 0; padding: 0; } /* all panels inside the slider */ .anythingBase .panel { background: transparent; display: block; overflow: hidden; float: left; padding: 0; margin: 0; } .anythingBase .panel.vertical { float: none; }
/* Navigation Arrows */ div.anythingSlider .arrow { top: 50%; position: absolute; display: block; } div.anythingSlider .arrow a { display: block; height: 140px; margin: -70px 0 0 0; /* half height of image */ width: 45px; text-align: center; outline: 0; background: url(../images/default.png) no-repeat; } /* hide text, target the span so IE7 doesn't text-indent the link */ div.anythingSlider .arrow a span { display: block; visibility: hidden; } /* back arrow */ div.anythingSlider .back { left: 0; } div.anythingSlider .back a { background-position: left top; } div.anythingSlider .back a:hover, div.anythingSlider .back a.hover { background-position: left -140px; } div.anythingSlider .back.disabled { display: none; } /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */ /* forward arrow */ div.anythingSlider .forward { right: 0; } div.anythingSlider .forward a { background-position: right top; } div.anythingSlider .forward a:hover, div.anythingSlider .forward a.hover { background-position: right -140px; } div.anythingSlider .forward.disabled { display: none; } /* disabled arrows, hide or reduce opacity: opacity: .5; filter: alpha(opacity=50); */
/* slider autoplay right-to-left, reverse order of nav links to look better */ div.anythingSlider.rtl .anythingControls ul a { float: right; } /* reverse order of nav links */ div.anythingSlider.rtl .anythingControls ul { float: left; } /* move nav link group to left */ div.anythingSlider.rtl .anythingWindow { direction: ltr; unicode-bidi: bidi-override; } /* div.anythingSlider.rtl .start-stop { float: right; } */ /* move start/stop button - in case you want to switch sides */
/* probably not necessary, but added just in case */ div.anythingSlider, div.anythingSlider .anythingWindow, div.anythingSlider .anythingControls ul a, div.anythingSlider .arrow a, div.anythingSlider .start-stop { transition-duration: 0; -o-transition-duration: 0; -moz-transition-duration: 0; -webkit-transition-duration: 0; }
I added the above css to the style.css - previously I was just adding it to the anythingslider.css, because adding it to style.css didn't make any changes. It is now working... However, when I go into the Anything Slider plugin settings and make any changes the slider stops working. I can get it to work again by deactivation the plugin and reactivating it. but I can't style, add/subtract nav, etc. or it breaks. I tried installing another slider (easing slider) as a test and it also did not work correctly. There appears to be some offending code somewhere on the back end that conflicts with the jquery code.
It is working. I just need to make all the style settings in the php instead of the Anything Slider plugin settings. Thanks for all your help Mottie. Hopefully the client will just let us rebuild the site from scratch soon so we don't have to deal with all the leftover code that obviously is the problem. Thanks again.
Hello, I'm having a similar problem. I'm trying to use Dreamweaver CS5 to create & edit a Wordpress site. I have WAMP installed on my computer. The homepage slider is stacking the photos instead of sliding them. I've tried 3 different Wordpress themes but I get the stacking problem which ever theme I use. The strange thing is, when I preview the site in Dreamweaver using "live view" (WebKit browser) it displays properly. But with every other browser (IE, Firefox, Chrome, Opera) I get the stacking problem. Sorry I can't give a link to the site but it's not online at this point. I'm working with a fresh install of Wordpress with no plugins. I'm pretty much a novice with all this stuff. Anyone have an idea what the problem might be? Below is a copy of my featured.php file:
I'll need to see the javascript contained in the head section of your page to be 100% sure, but it sounds like you're just missing a bracket. Make sure the opening and closing brackets match up. So when you initialize the slider, it should be wrapped and the options should have matching brackets like this:
// document ready - opening ( and { $(function(){ $('#slider').anythingSlider({ // initialization options - opening ( and { // bunch o' options here }); // slider options - closing } and ) - the order is reversed here }); // document ready - closing } and } - reversed order (curly bracket then parenthesis)
If that doesn't solve the "jQuery is not defined" issue then you might be using another library like Prototype? If that is the case, then make sure you include jQuery no conflict mode:
Mottie: I'm wondering if you could look at my similar issue (slides stacking not sliding).
Background: On our old server (media temple dv 3.5) it is working great:
http://205.186.143.51/slideshows/branding.php
Hello all,
I'm using slides on my site that works in firefox. I'm having trouble running the slideshow in Chrome browser and couldn't hide play buttons. . The site URL is
Hi @ddshiva. The google docs you shared only contains css. Could you share a live demo or more of your code?
And actually, this thread is more in reference of the AnythingSlider plugin, so starting a new thread would probably get more people to look at it and try to help.
and this: http://wordpress.org/support/topic/plugin-anythingslider-for-wordpress-nothing-but-trouble-so-far
But they still stack. The site is: http://playgolfarizona.com/.
Any help would be greatly appreciated. Thank you.
Use only the most recent one.
/js/jquery.quovolver.js">
jQuery.noConflict();
/js/swfobject.js">
I'm having a similar problem. I'm trying to use Dreamweaver CS5 to create & edit a Wordpress site. I have WAMP installed on my computer. The homepage slider is stacking the photos instead of sliding them. I've tried 3 different Wordpress themes but I get the stacking problem which ever theme I use. The strange thing is, when I preview the site in Dreamweaver using "live view" (WebKit browser) it displays properly. But with every other browser (IE, Firefox, Chrome, Opera) I get the stacking problem. Sorry I can't give a link to the site but it's not online at this point. I'm working with a fresh install of Wordpress with no plugins. I'm pretty much a novice with all this stuff. Anyone have an idea what the problem might be?
Below is a copy of my featured.php file:
Error: missing } after function body
Source File: http://wp_1/wp-includes/js/jquery/jquery.js?ver=1.7.1
Line: 5, Column: 28300
Error: jQuery is not defined
Source File: http://wp_1/wp-content/themes/DeepFocus/epanel/shortcodes/js/et_shortcodes_frontend.js?ver=2.0
Line: 245
and a bunch more "jQuery is not defined"
I'll need to see the javascript contained in the head section of your page to be 100% sure, but it sounds like you're just missing a bracket. Make sure the opening and closing brackets match up. So when you initialize the slider, it should be wrapped and the options should have matching brackets like this:If that doesn't solve the "jQuery is not defined" issue then you might be using another library like Prototype? If that is the case, then make sure you include jQuery no conflict mode:But now instead of using "$" in the code above, use "jQuery" in it's place.
Mottie: I'm wondering if you could look at my similar issue (slides stacking not sliding). Background: On our old server (media temple dv 3.5) it is working great: http://205.186.143.51/slideshows/branding.php
On the new server I get the stacking issue: http://64.207.157.17/slideshows/branding.php
Both are LAMP setups. I'm at a loss re. why anythingslider w/out any code changes works at one and not the other.
Hi @silverliebt!
The anythingslider.js file is missing:
Everything else looks okay :)
Thanks Mottie, that did the trick. Really appreciate the help.
Hello all, I'm using slides on my site that works in firefox. I'm having trouble running the slideshow in Chrome browser and couldn't hide play buttons. . The site URL is
https://docs.google.com/document/d/15U4nfriIwJfAOssDKETKukDMiHsBIvNvxsBxwoQdP1Q/edit
Any help is greatly appreciated.
Hi @ddshiva. The google docs you shared only contains css. Could you share a live demo or more of your code?
And actually, this thread is more in reference of the AnythingSlider plugin, so starting a new thread would probably get more people to look at it and try to help.