Currently, I am using a tooltip that is positioned on the right side:
<i
class="fas fa-question-circle text-blue"
data-toggle="tooltip"
data-placement="right"
title="hello"
></i>
I have attempted to modify the color of the tooltip arrow with the following CSS:
.tooltip.left .tooltip-arrow {
border-left-color: red !important;
}
Unfortunately, my changes are not being reflected. Can anyone point out where I might be going wrong?