Viewing 4 replies - 1 through 4 (of 4 total)
  • You can edit that value in the Special Recent Posts widget’s “Advanced Posts Options.”

    Look for the “Post String Break” value and enter your desired link text there.

    Plugin Author Luca Grandicelli

    (@lgrandicelli)

    Hi, I tried that, but I don’t want to include these dots to the “read more” link. But I’ve just found another way, using CSS:

    a.srp-widget-stringbreak-link:before{content:'.....';margin-left:3px;margin-right:6px}

    This works like a charm, and many thanks anyway!

    Edit: oooops, de grey dots had a (red) text-decoration, after some fuddling with CSS this works very nice now:

    .srp-widget-stringbreak-link {
       position: relative;
        margin-left: 0px;
        padding-left: 30px;
        text-decoration: none;
    }
    
    a.srp-widget-stringbreak-link:before {
        content: ".... ";
        position: absolute;
        left: 0;
    }
    
    a.srp-widget-stringbreak-link:hover {
        text-decoration: underline;
    }

    Sorry, my post above was posted in the wrong topic…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Special Recent Posts] change read more link after excerpt’ is closed to new replies.