In jqueryslidemenu.js find this line
Code:
//Specify full URL to down and right arrow images (23 is padding-right to add to top level LIs with drop downs):
var arrowimages={down:['downarrowclass', 'down.gif', 23], right:['rightarrowclass', 'right.gif']}
If you wish to change img you can do it hire in js file, or you can locate class (yellow) in css file jqueryslidemenu.css and set to display:none; to remove them.
Code:
.downarrowclass{
position: absolute;
top: 12px;
right: 7px;
display:none;
}
.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
display:none;
}
Bookmarks