• Resolved egocentralisjap

    (@egocentralisjap)


    Hey,

    I am wondering, if it is possible to change the … in front of the read more to an arrow, dot, or something like that?

    Would be awesome.

    Regards Jap

Viewing 1 replies (of 1 total)
  • Plugin Author Bolton Studios LLC

    (@boltonstudios)

    @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.

Viewing 1 replies (of 1 total)

The topic ‘Change the elipsis’ is closed to new replies.