Ok, been messing around a bit with WP, "Elegant Theme" & W-O-M.
Firstly, in the Main Index Template I replaced
Code:
<?php the_content(__('Read more...', 'elegantbox')); ?>
with
Code:
<?php the_excerpt(__('Read more...', 'elegantbox')); ?>
Then to put some space around the thumbnails generated by "Thumbnail For Excerpts" I added the following to style.css
Code:
.imgtfe {
float: left;
margin-top: 7px;
margin-right: 7px;
margin-bottom: 7px;
}
Then to remove the '[...]' at the end of the excerpt & align the hyperlink with the last line, I edited 'formatting.php' in the wp-includes folder.
I changed line 1495 from:
Code:
array_push($words, '[...]');
to
Code:
array_push($words, '<a '.'href="'.get_permalink().'">'.'Read More...'.'</a>');
Worked a charm. What I did notice was that for some reason when I edited the file in EditPad Pro it would break the WP editing after saving. As soon as I did the edit in Zend Studio on a new copy, all was good. Something to do with the encoding, but nothing I could readily pick, as all looked good.