I've seen several different posts asking for some way to move the "read more" link and make it more visible, but I haven't found any answers to the question. Is this something hard-coded or can one it be edited (even if it is a small module hack). I've looked around the theme & module files but haven't been able to find it.

It *is* too subtle. I've had to coach my users to look for it. It really does get lost in the list. It seems that it always has the title: "Read the rest of this posting". So, I suppose that it could at least be styled by css :

a[title="Read the rest of this posting"] {
    font-size: 1.25em;
    color: #900;
}

But the attribute selector doesn't seem to work in IE, just Mozilla and Opera.

Comments

rompe’s picture

I print the bodies in my theme using this code:

    if ($main == 1 && $node->teaser && $node->teaser != $node->body) {
      print $node->teaser ." ";
      print l("<b>[...]</b>", "node/view/". $node->nid, array("title" => t("Read the rest of this posting.")));
    }
    else {
      print $node->body;
    }

Look ma, no signature!