Align text and image in header

Hi, This is probably very simple but I cannot work out what I need to do to get this right.

I simply want to get an image to display to the right of some text in my header section but I want the image to be just after the text, and not right over to the right.

The site is working but I want to make a change to the header, an example page is - http://www.hitchintownfc.co.uk/nicktest.shtml

I normally muddle my way through with css stuff but this is eluding me :blush:

Thanks, Nick.

Hi Canary Nick

float both elements: for example:


<html>
<head>
  <style>
    p {float: left;}
    div {width: 800px;}
  </style>
</head>
<body>
<div>
    <p>This is my text</p>
    <p><img src='path/to/image' /></p>
</div>
</body>
</html>

Steve