Sorry in what file shall i make the change ?
thanks

Quote Originally Posted by gjh42 View Post
Change the padding-left in #logo to 0.
Make #taglineWrapper float: right.
You could also change the padding to something like
padding:25px 8px 35px 23px;
which will give 8px right padding and 23px left padding.
Code:
#logoWrapper {
	width:auto;
}
#logo {
	float:left;
	padding-left:15px;
	text-align:center;
}
#taglineWrapper {
	width:75%;
	float:left;
}
#tagline {
	font-size:1.1em;
	text-align:center;
	padding:25px 8px 35px;
}