Yes, the problem is on this page : http://les-virees-electroniques.com/programmation/
Thanks again for your time 🙂
I did the changes you told me now the accordion section in functions.js.php , I did it from the wp board editor :
/////////////////////////////////////////////
// Reload Functions
/////////////////////////////////////////////
var reloadFunctions = {
init:function() {
// Remove title attributes from images to avoid showing on hover
$j(‘img[title]’).each(function() {
$j(this).removeAttr(‘title’);
});
$j(‘.gallery-icon a[title]’).each(function() {
$j(this).removeAttr(‘title’);
});
// Tabs Shortcode Function
$j(‘.tabbed-asset’).tabs();
// Accordion Shortcode Function
$j(‘.accordion’).accordion({
activate: false,
collapsible: true,
autoHeight: false
});
}
}
Marina.