Please can somebody tell me how to do the following
.logo {
display: block;
text-indent: -9999px;
text-transform: capitalize;
background: url(../images/menu.png) no-repeat;
height: 120px;
}
change image so when its clicked
background: url(../images/menu_open.png) no-repeat;
the HTML for this is
<div class="sidebar">
<a href="#" onclick="return showOrHide('menulink');"><div class="logo">TEST IMAGE</div></a>
<ul id="menulink">
Currently when clicking the icon, the menu opens and closes,
view the full codes at http://carbonyzed.co.uk/menu/2/index.html http://carbonyzed.co.uk/menu/2/css/style.css
Thanks
showfeature.