I'm developing a website that uses jquery tabs+standard ui theme, and I'd like to change/override the font settings (size) of the ui theme. Though I looked at related sites Easy way to overwrite basic jQuery-UI css?, http://api.jqueryui.com/tabs/, http://api.jqueryui.com/theming/css-framework/ I cant get it worked.
Pls your help.
Here's what I have now (simplified code):
<style>
#ui-tabs-div.ui-widget {font-size: 10px} /* this is not working */
</style>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js" > </script>
<script type="text/javascript">
$(function() {
$( "#tabs" ).tabs();
}
</script>
<div id="tabs"> </div> <!--tab contents here -->