@egocentralisjap Hello, thanks for inquiring and trying the plugin. Using CSS or JavaScript is the best way to change the ellipsis (…) to an arrow or a dot in the current version of the plugin. For example, adding the following CSS to the Theme Customizer in Appearance > Customize > Additional CSS should allow you to replace the three dots with a dot, arrow, or chevron/double arrow.
/* Hide ellipsis */
.ellipsis{
font-size: 0;
}
/* Add arrow (option) */
.ellipsis:before{
content: ">";
font-size: 20px;
}
/* Add dot (option) */
.ellipsis:before{
content: "•";
font-size: 20px;
}
/* Add chevron (option) */
.ellipsis:before{
content: "»";
font-size: 20px;
}
Please try and let me know if that works. Feel free to post a link to your site here or send it to [email protected] if you have any trouble and I can adjust the CSS for your page.