html - Keep logo on the same line as nav -


i want have logo image on site on left of navigation. can tell me how should put code without having force other items onto row below:

http://jsfiddle.net/spadez/gmm2p/11/

i think in-line block im not sure. i'm not sure if image should go within list or if should outside it. appreciated.

here 2 ways can accomplish this:

add css:

.logo {     float: left; } 

or make addition/change:

.logo {     position: absolute; }  ul li {     display: inline;     padding-left: 30px; } 

where padding-left's value enough pixels pushes links right of logo. it's impossible me know proper value without knowing width of logo image.


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -