So, something like this?
Original class:
Code:
.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 11px Arial, Helvetica, sans-serif;
color: #044990;
background: url(../images/nav_button.png) no-repeat center left;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/
margin-top: 0px; /*top spacing between header and rest of content*/
text-transform: uppercase;
padding: 5px 0 5px 50px; /*header text is indented 50px*/
cursor: hand;
cursor: pointer;
}
New class:
Code:
.staticnav-item {
font: bold 11px Arial, Helvetica, sans-serif;
color: #f90;
background: url(../images/nav_button.png) no-repeat center left;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/
margin-top: 0px; /*top spacing between header and rest of content*/
text-transform: uppercase;
padding: 5px 0 5px 50px; /*header text is indented 50px*/
cursor: hand;
cursor: pointer;
}
Bookmarks