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
| SitePoint Sponsor |
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:
Code:#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; }





You have embedded styles on your HTML page. At the moment, the section ralph.m referred to reads:You need to change that min-height to 74px, which is the height of your logo.Code CSS:#header h1 a, #header h2 a{ background: url([url]http://uptenlist.com/wp-content/uploads/2012/09/finallogo1.png[/url]) no-repeat; min-width: 211px; display: block; min-height: 65px; line-height: 28px; }
If you're a bear made of mohair, ponder on the nature of a mo.
its already like this
but dont know, i also saw on google chrome extension its shows me min-height: 65px;PHP Code:#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;
}
![]()



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.
If you're a bear made of mohair, ponder on the nature of a mo.


Bookmarks