Two alternatives. Add a new class (any object can belong to more than one class), or give your object an "id". Remember that there can only be one object with that "id" in the page, but I think that's what your want anyway.
You will need to add some extra code to your CSS file.
Code:
<li class="licenter"><a href="#home" class="scroll rtm">Return to Menu</a></li>
.rtm{
background-color:#000!important;
color:#f00!important;
}
.rtm:hover{
background-color:#f00!important;
color:#000!important;
}
Code:
<li class="licenter"><a href="#home" id="rtm" class="scroll">Return to Menu</a></li>
#rtm{
background-color:#000!important;
color:#f00!important;
}
#rtm:hover{
background-color:#f00!important;
color:#000!important;
}
Bookmarks