I need to modify the appearance of my button text to make it white, specifically for the buttons that indicate who is currently logged in and the logout button. The current blue color makes it difficult to read and understand.
My assumption is that the reason for the blue color is because these buttons are actually links.
Here's the code snippet:
<p class="navbar-text pull-right">
<span class="glyphicon glyphicon-user"></span>
<span class="label label-info" style="color:white"> Logged in: <a class="navbar-link" style="color:white">{{ HTML::linkRoute('user_data', Auth::user()->user_name) }} </a> </span> |
<span class="label label-danger" style="color:white">{{ HTML::linkRoute('logout', 'Log Out') }} </span></p>
<ul class="nav navbar-nav pull-left">