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