So the image needs to be brought down a little?
That's easy! If you have a look at your html code you will see this:
Code:
<img src="potw.gif" width="150" height="38" align="top">
<form method="post" action="http://members.lycos.co.uk/departedend/sympoll/dovote.php">
What you have to do is replace it with this:
Code:
<form method="post" action="http://members.lycos.co.uk/departedend/sympoll/dovote.php">
<img src="potw.gif" width="150" height="38" align="top">
You see, the <form> tag sort of pushes things away like a break tag. What you have to do is put the code which you want to not be pushed away inside the <form> tag.
That make sense?
Tech