开发者

jquery slider not working with wordpress

开发者 https://www.devze.com 2023-02-03 06:39 出处:网络
I am trying to integratejCarousel with wordpress and custom content types at This 开发者_开发百科Link .

I am trying to integrate jCarousel with wordpress and custom content types at This 开发者_开发百科Link .

As you can see by the car images on the right, it's not styling or rotating the images whatsoever. I believe, all the js is in the right place and the CSS isn't being set for the slider. Maybe I'm exhausted, maybe I'm crazy.

Any help would be appreciated, this is driving me nuts. I've been at this for hours.

Thank you for any help!


If you look at skin.css, at the very first style:

.jcarousel-skin-tango .jcarousel-container {
    -moz-border-radius: 10px;
    background: #F0F6F9;
    border: 1px solid #346F97;
}

In Firebug this style isn't recognized at all, but if you change it to:

.jcarousel-skin-tango, .jcarousel-container {
    -moz-border-radius: 10px;
    background: #F0F6F9;
    border: 1px solid #346F97;
}

OR:

.jcarousel-skin-tango {
    -moz-border-radius: 10px;
    background: #F0F6F9;
    border: 1px solid #346F97;
}

Maybe you are just missing the commas "," between the styles on that sheet?

0

精彩评论

暂无评论...
验证码 换一张
取 消