Hi Spherical,
Thank you for your reply, sorry - I didn't explain myself very well. I've got the positioning divs & css sorted, my problem is that I don't know how to get the relevant bits of information from the post to appear in their appropriate areas on the page.
I'm trying to work out what code I need to put within the index.php file to get the just the title & body text from the post to appear in the .si_info div & just the images from the post to load within the .si_pics div.
PHP is not a strength of mine, however I think I need to alter the code in the theme that loads the content (shown below):
‘<?php
if ($flg_img_extract) {
$content = get_the_content();
$content = apply_filters('the_content', $content);
$content = adjust_single_image($content);
echo $content;
}
else {
the_content();
}
?>‘
I guess I need a separate filter for each element to then place the content in each div on the page?