I’m using SSIWeb v8. By default, the SSI ToolTip function creates a tool tip that has a black border and a gray background. How can I remove the border and have the background clear or white?
All you need to do is modify the CSS code for the tool_tip_text
class. Place the following code in either the Survey Settings>Headers and Footers>HTML Head Tag section for a global change or on the specific page you want the style to be altered.
For the white background and no border:
<style>.tool_tip_text {background-color:white;border:none;}</style>
For the transparent background and no border:
<style>.tool_tip_text {background-color:transparent;border:none;}</style>