Пытаюсь прикрутить слайдер как написано тут http://drupalsn.ru/blogs/development/392
Для семерки, не полается , скрины с настройками ниже, где я промахнулся?
Скрипт подключил через .info и он подключился.
jQuery(document).ready(function() {
jQuery('#primary-menu li li').addClass('not1st');
jQuery('#block-views-awords-block_1 img.imagecache-carousel').each(
function(){
if(jQuery(this).height()>0 && $(this).height()<105){
jQuery(this).css('padding-top',(105-jQuery(this).height())/2);
}
}
);
jQuery('#primary-menu li').each(
function(){
if(!jQuery(this).hasClass('not1st')){
jQuery(this).children('a:first-child').css('background-position','-'+(jQuery(this).offset().left-jQuery(this).parent().parent().parent().offset().left)+'px 0px');
}
}
);
jQuery('img.imagefield-field_slider_image').after('');
jQuery('#block-views-front_production-block_1 .attachment .views-field-title .field-content').each(
function(){
if(jQuery(this).html().length<19){
jQuery(this).addClass('one-row');
}
}
);
jQuery('#block-menu-menu-catalog .content').wrap('
');
jQuery('#block-menu-menu-catalog li a').each(
function(){
if(jQuery(this).html().length<20){
jQuery(this).addClass('one-row');
}
}
);
jQuery('#block-menu-menu-catalog li li a').each(
function(){
if(jQuery(this).html().length<25){
jQuery(this).addClass('one-row');
}else{
jQuery(this).removeClass('one-row');
}
}
);