Typically, users don’t need to modify CSS codes directly in the CSS file. Instead, you can easily set up tooltip style options with just a few clicks. Here’s how it works:
When accessing the WordPress tooltip style settings panel (version 14.1.6), you’ll find various options to customize the tooltip appearance. It allows you to choose different styles and customize them according to your preferences.
tooltips font size link in wordpress tooltips pro plus Tooltips Style panel
However, we also provide an alternative method for developers who want to customize the styles further using a CSS file. If you have activated the Tooltips Pro plugin, please check the page source, and you’ll see that the tooltips.css file is loaded:
html:
<link rel=”stylesheet” href=”http://yourdomain.com/wp-content/plugins/tooltips-pro/tooltips.css” type=”text/css” media=”screen” />
By opening the tooltips.css file, you will find some commented code sections serving as a reference. Within these sections, you can edit the CSS properties. For example:
css:
.classtoolTips0 {
color: red !important;
}

