I am experiencing an issue with the navigation bar on my webpage. Currently, it is styled with white text against a dark background color using the following CSS code snippet:
a{
color: white;
text-decoration:none;
font-weight:bold;
font-size: 17px;
font-family: "Calibri";
}
The problem arises when I incorporate Twitter Bootstrap to make the navigation bar resizable for mobile devices. Suddenly, the text color changes from white to a "bluish" shade. How can I revert the color back to white without removing the Twitter Bootstrap framework?