Hi Community.
I have an icon in the CTA that conflicts to hover color. I would like to change the icon when hovering to a white icon.
To do so, I have added the code
.HitchhikerLocationStandard-primaryCTA{
.HitchhikerCTA .Icon-image:hover{
background-image: url(“https://a.mktgcdn.com/p/_xR_ltll-9VTgHaHtRXLTiWrwzZpA8ZZB9w_Tkrn4tI/22x22.png”);
}
}
My standard CTA styling is
.HitchhikerCTA{
color: #900E27;
border: 1px solid;
text-transform: uppercase;
padding: 13px 16px;
letter-spacing: 2px;
font-size: 16px;
border-radius: 3px;
text-decoration: none;
}
.HitchhikerCTA:hover{
color: #ffffff;
background-color: #900E27;
}
.HitchhikerCTA-iconLabel{
white-space: normal;
width: 150px;
text-transform: uppercase;
}
With this setup, the hover however only works in the icon and not the CTA
Any thoughts?
Lucas B