How to align Logo?

hi friends

www.uptenlist.com kindly check logo, bottom logo portion cut! . can you tell me, how i can adjust and fit on header portion

thanks

Around line 107, change the min-height to 74px:

#header h1 a, #header h2 a {
background: url(http://uptenlist.com/wp-content/uploads/2012/09/finallogo1.png) no-repeat;
min-width: 211px;
display: block;
min-height: [COLOR="#FF0000"]74[/COLOR]px;
line-height: 28px;
}

no affect sir, can you check it again

You haven’t changed it yet. Make sure to upload the change.

#header h1, #header h2 {
font-size: 38px;
display: block;
float: left;
display: inline-block;
margin: 0;
line-height: 28px;
margin: 35px 0;
}
#logo a {
color: #56A0EB;
margin-top: 22px;
}

this is a code right?

[FONT=Verdana]You have embedded styles on your HTML page. At the moment, the section ralph.m referred to reads:

#header h1 a, #header h2 a{
			background: url(http://uptenlist.com/wp-content/uploads/2012/09/finallogo1.png) no-repeat;
			min-width: 211px;
			display: block;
			min-height: 65px;
			line-height: 28px;
			}

You need to change that min-height to 74px, which is the height of your logo.[/FONT]

its already like this


#header h1 a, #header h2 a {
background: url(http://uptenlist.com/wp-content/uploads/2012/09/finallogo1.png) no-repeat;
min-width: 211px;
display: block;
min-height: 74px;
line-height: 28px;
}

but dont know, i also saw on google chrome extension its shows me min-height: 65px; :frowning:

You have that same declaration in two different places. It’s in your style.css, where it has been changed to 74px, but it’s also in an embedded style on your html page. As the embedded styles come after your linked external stylesheets, that declaration is over-riding the one from style.css. You’ll either need to change it on every page, or - preferably - get rid of your embedded styles.

You need to work out how to activate the changes. I see this is a WordPress site. How are you making the changes?