To stop all search engine accessing your gallery / contact pages create a robots.txt file in the same location where your html files are with the following:
If done correctly you should be able to see it when accessing: http://www.plugscaffolding.co.uk/robots.txt
The reason the left menu is being pushed down is because it is too wide. If you use the web developer toolbar and choose outline > outline block level elements you can see how the page is drawn, and how the left menu is too wide (or alternatively how the right menu too big).
Fix:
in your styles.css change #left to:
This reduces the width slightly, and forces it to be on the left hand side.
Code:
User-agent: *
Disallow:
Disallow: gallery.html
Disallow: contact.html
The reason the left menu is being pushed down is because it is too wide. If you use the web developer toolbar and choose outline > outline block level elements you can see how the page is drawn, and how the left menu is too wide (or alternatively how the right menu too big).
Fix:
in your styles.css change #left to:
Code:
#left
{
width: 200px;
float:left;
}
This reduces the width slightly, and forces it to be on the left hand side.