I followed the instructions in the documentation to create a navbar with an image as the "brand". However, my .svg image is not showing up. Can anyone help me understand why?
Here is a simplified example: http://plnkr.co/edit/bb2bBv0dD67fFBSpS5uH
The solution provided in this question does not seem to work for me.
Since all code from plnkr must be accompanied by text, I will paste what I believe is the most important part:
Toggle navigation
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<button type="button" class="btn btn-lg btn-primary" data-animation="am-flip-x" bs-dropdown="networks_dropdown">
Networks
</button>
</li>
<li class="active">
<a href="#">Workplace</a>
</li>
<li>
<a href="#">Generate</a>
</li>
<li>
<a href="#">Export</a>
</li>
<li>
<a href="#">Training</a>
</li>
<li>
<a href="#">Settings</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Logout</a></li>
</ul>
</div>
</div>