Forum Moderators: not2easy
I have a couple of elements on the page that use the same style of "background-position: -52px 0;" in the css but one of those I need to change the position but don't want to change it on the css - instead I'd like to add it just to the html. How do I do that?
I currently have:
<a id="button1a" href="index.html"><span class="alt">Test</span></a>
<a id="button2a" href="about.html"><span class="alt">Test 2</span></a>
but would like to change the background position on button2a to "background-position: -52px 32;"
Is there a way I can style the individual element in the HTML code? I'm sure I just need to add a style tag somewhere and then insert the background-position tag but I don't know where!