my apologies – I have checked my index.php file as I didn’t have a page.php file with my theme and the following code was responsable for abbreviating the text:
<?php if(is_single()) {
the_content();
} else {
the_excerpt();
} ?>
I’ve now added a page.php file and everything works fine.
Thanks