I have a href link as jquery button
$("a.button, button, input:submit", "div").button();
<a href="/Home/Acton" class="button">Back</a>
<button name="submit" id="continue" value="continue">Continue</button>
as a result i have that:

So the issue is that Back text in a href not white, in order to fix I’ve added the style below.
/*jQuery buttons a href style fix*/
a.button:link {color: #fff !important;}
a.button:hover {color: #026890;}
I could see in firebug that style is applied but it is does not help, the Back text still not white.
The thing is that when Back is on hover it is looking good but when not on hover text should be white the same way like Continue has, but it is not.
How may i fix that in CSS?
You didn’t set
a:visitedto be white thats why you have such situation and also you may seta:hoverto be#026890So try that: