2016-11-07 99 views
1

我想添加一個配置文件圖像和註銷鏈接到自舉側導航欄。將配置文件圖像添加到自舉導航欄

current

這是到目前爲止我的代碼

<ul class="nav navbar-nav"> 
     <li> 
      <div class="img-rounded profile-img"></div> 
      @Html.ActionLink(User.Identity.GetUserName(), "Index", "Manage", routeValues: null, htmlAttributes: new { title = "Manage" }) 
     </li> 
     <li><a href="javascript:document.getElementById('logoutForm').submit()">Log off</a></li> 
    </ul> 

我想中心的圖像和顯示的輪廓圖像下方的用戶名。 這是CSS的.profile-img

.profile-img { 
    margin-top: -5px; 
    margin-right: 5px; 
    float: left; 
    background: url('../Images/profile_pic_default.png') 50% 50% no-repeat; /* 50% 50% centers image in div */ 
    background-size: auto 100%; /* Interchange this value depending on prefering width vs. height */ 
    width: 30px; 
    height: 30px; 
} 

一些可否請您來爲我的解決方案?

+0

你需要玩你的圖像「填充」在css – Emil

回答

0
.profile-img, a { 
     display: inline-block; 
     vertical-align: middle; 

} 
+0

沒有運氣。感謝您的時間 – Sanjeewa

0
.nav li { 
     display: inline-block; 
     vertical-align: middle; 
     height: 30px; 
     line-height: 30px; 
    } 

高度和行高值可選。

+0

不按預期工作。謝謝! – Sanjeewa