Reputation: 1235
For one reason or another we have to keep the markup this way, I'm simply trying to change the color of the bold tag on the hover of the href. I could write some jquery bu I THINK this is possible with simple css. Blanking though, Any help would be much appreciated, i've tried different variants and can't nail it!.
<a href="http://yolocal.dev:3000/catalog_items/3080191" class="deal_percent_link_style"><b span="deal_data_wrapper">-73% </b></a>
Upvotes: 0
Views: 599
Reputation: 219824
You can do this with CSS:
a.deal_percent_link_style:hover b {
color: #f00;
}
Upvotes: 3