Reply To: Where can I edit the tooltips?

#10045205
Support
Keymaster

Hello, the tooltips comes from Bootstrap, to customize it you can add this custom css:

(css/custom.css)

.tooltip {
	--bs-tooltip-bg: #FFEB6C;
}

.tooltip > .tooltip-inner {
	padding: 15px;
	font-size: 1.2em;
	color: #374D40;
}

More details: https://getbootstrap.com/docs/5.2/components/tooltips/