'Help Text' Branding Customization
On an eForm, is there some css (or some other method) that you can put on the form in order to brand the Help Text callout? I'd like to be able to change the color of the background, maybe the color of the font, etc.

-
Hi Gwen,
try this in shared css or normal css:
.ui-tooltip, .ui-tooltip {
color: red !important;
text-decoration: line-through;
}Like this you can modify the css of the tooltip.
2nd way with JS:
$(function() {
$("head").append("<style>.ui-tooltip {background: #3F51B5 !important;}</style>");
});
Regards,
Alexey
-
Hi Gwen,
please try:
.right, .ui-tooltip-content::after {
border-top-color: transparent !important;
border-bottom-color: transparent !important;
border-right-color: red !important;
border-left-color: red !important;
}
.ui-tooltip, .ui-tooltip-content {
background-color: red !important;
}Regards,
Alexey
請登入寫評論。

評論
4 條評論