I am encountering an issue where the text on my Bootstrap-styled buttons is not appearing on my webpage. After some investigation, I discovered that certain lines in the jQuery UI theme file are causing this problem:
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
font-family: Verdana,Arial,sans-serif;
font-size: 1em;
}
By removing these lines in a debugging tool, I was able to fix the problem where the button text was too small to be visible. Even though I have ensured that the Bootstrap.css file is linked later in the list of stylesheets, the CSS definition in jQuery UI is more specific. How can I prevent the jQuery UI theme from interfering with my Bootstrap buttons?