I am working on a class that I have created, which is called .blueButton. It contains some CSS styling that makes it look like a button.
.blueButton {
/* Styling properties go here */
}
To implement this button, I use the following HTML code:
<a href="..." class="blueButton">link text</a>
While my button displays correctly, I'm facing an issue with adding a background image to the right of the link text. I attempted the following code:
background: url('image url') no-repeat top right;
However, the image did not appear as expected. I'm wondering if this is the correct way to add a background image. Here's a fiddle demonstrating my problem: http://jsfiddle.net/bSDYG/
Any assistance would be greatly appreciated!