Hi
Thx Kevin, the css code works ??
But a custom excerpt no hidden the ellipsis (and “Read more”).
I find a solution add this code on “functions.php” child theme
function trim_excerpt($text)
{
return str_replace('… ', '', $text);
}
add_filter('the_excerpt', 'trim_excerpt');