The plugin loads jQuery UI skins, which define their own font rules.
If you want to inherit font styling from your theme, whilst maintaining the jquery skin appearance, it may be a simple case of adding a couple of helper css definitions into your theme’s stylesheet.
It’s these two rules in the jquery themes/skins that cause a problem.
.ui-widget {
font-family: Verdana,Arial,sans-serif;
font-size: 1.1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
font-family: Verdana,Arial,sans-serif;
font-size: 1em;
}
All we need here is a few overriding rules in the WordPress theme….
Add the following to the bottom of your theme’s stylesheet(style.css).
.ui-widget,
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button { font-family:inherit!important; }
And the tabs should now inherit styling from the parent elements in your theme, but of course feel free to change the font-family
definition in the above to an actual font if you prefer.
Hope that helps.