Skip to content

Commit

Permalink
Fixed alignment issue of sitelogo
Browse files Browse the repository at this point in the history
  • Loading branch information
emfluenceindia committed Nov 9, 2016
1 parent 77a72f0 commit 8d56b77
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
12 changes: 11 additions & 1 deletion src/BugNET_WAP/Content/Site.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,17 @@
}

.navbar-inverse .navbar-brand-img {
padding: 5px 15px 15px 15px;
padding: 7px 15px 15px 15px;
}

.navbar-inverse .navbar-brand-img img, .navbar-inverse .navbar-brand-img span.site-name-text {
display: inline-block;
}

.navbar-inverse .navbar-brand-img span.site-name-text {
position: relative;
top: 2px;
left: 8px;
}

.navbar-inverse .navbar-toggle {
Expand Down
5 changes: 3 additions & 2 deletions src/BugNET_WAP/Site.Master
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@
<i class="fa fa-bars"></i>
</button>
<a class="navbar-brand navbar-brand-img" runat="server" href="~/">
<img runat="server" src="~/images/logo.png" height="40" width="40" />
BugNET</a>
<img runat="server" src="~/images/logo.png" height="40" width="40" alt="" />
<span class="site-name-text">BugNET</span>
</a>
</div>
<div class="navbar-collapse collapse">
<asp:Literal ID="litMenu" Visible="true" runat="server"></asp:Literal>
Expand Down

0 comments on commit 8d56b77

Please sign in to comment.