All of a sudden there are three dots below the “Read more” text. I don’t know where they come from and want to get rid of them. But how?
Hey Schwimmsport Steiner,
To remove the 3 dots try adding this code to the end of your functions.php file in Appearance > Editor:
function custom_script(){
?>
<script>
(function($){
$(document).ready(function(){
$(".slide-entry-excerpt.entry-content").contents().filter(function(){ return this.nodeType == 3; }).remove();
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'custom_script');
Then clear your browser cache and check.
Best regards,
Mike