Using Bootstrap 3
I'm trying to access the brand name in the navbar-header to change its link color and I am having trouble figuring out the css selector to use, here is the structure for the relevant portion of my navbar:
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="/index.html" class="navbar-brand visible-xs">My Site Name</a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
...
</div>
</div>
Any help would be appreciated.
Thanks