Can someone suggest to change "dotted text color on mouse over" in HTML. I am trying with below code but it didn't work. please help me.
This is my css-------------
.gvb-theme-cpCaroToolTipList {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 150px;
/* color:#ffffff;*/
}
.gvb-theme-cpCaroToolTipList a {
color: #003c72;
line-height: 30px;
padding: 5px 10px;
text-decoration: none;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.gvb-theme-cpCaroToolTipList a:hover {
color:#ffffff;
text-align:center;
background-color:#003C72;
width:150px;
padding:5px 10px;
}
This is my HTML code-------------
<div class="gvb-theme-carosuleTooltipMargin">
<div class="gvb-theme-cpCaroToolTipList">
<a href="#">
<img src="img/cp_star.png" class="gvb-theme-cpSetStarIcon" > <span>CONTO LA LIBRETTA LIBRETTA</span>
</a>
</div>
</div>