I'm having an issue with a link that is styled like a button. It looks fine in Internet Explorer and Firefox, but not on Chrome.
For example:
The problem lies with the teal button in the center of the page that reads "follow issue."
I intended for the text to be white, but it doesn't seem to be working as expected.
This is the CSS code I used:
a:link.image_button
{
display: block;
background: #4E9CAF;
padding: 10px;
text-align: center;
border-radius: 5px;
color: white;
font-weight: bold;
text-decoration: none;
}
And here is the HTML for the link:
<a class="image_button" id="follow_issue" rel="nofollow" href="#" style="display: none;" title="Receive updates via email whenever there are new developments in this discussion.">Follow Issue</a>