Quote Originally Posted by psvialli View Post
Thank you so much sorted !

I have extended my Logo but as you can see there is still some space on the right , how can I make the Logo go full length ?

Sorry been looking at firebug but that just confused me more !

Thanks
Your logo (the logo.png) must be the width of the site (which looks to be 1000px).

Your PNG is currently 2020px × 143px.

CROP it to 1000px.

Change the following in stylesheet.css

Code:
#logo{
	width:950px;
	overflow:hidden;
	float:left;
	
}
to

Code:
#logo{
	width:1000px;
	overflow:hidden;
	float:left;
	
}