I see a few things going on which should be corrected.


Do not write script tags like this:

<script type="text/javascript">

...

</script>

Instead, write them as:

<script type="text/javascript">
/*<![CDATA[*/

...

/*]]>*/
</script>


Same applies to CSS.

<style type="text/css">
/*<![CDATA[*/

....

/*]]>*/
</style>

Using the above will prevent all kinds of Validation errors and other strange events.


You cannot put Style blocks within the BODY tags.

<style type="text/css">

...

</style>
<!-- /Trustpilot Widget Script -->
<br class="clearBoth" />

<!--eof-branding display-->

Move it to include within this file:
includes/templates/YOUR_TEMPLATE/common/html_header.php



There are a few anchor links not quite correct:

<a href=" http://www.fastlec.co.uk/blog/"><img src="./bm_images/header/blog.png"

- no space after the ="


Also, rather than write as:

<a href="http://www.fastlec.co.uk/blog/"><img src="./bm_images/header/blog.png"

Better to just use:

<a href="http://www.fastlec.co.uk/"><img src="bm_images/header/blog.png"


After working on the above, let's see where things are.