Well, regarding the background part, try first giving the top level menu links (A element) the desired background image in your CSS:
Code:
/*Top level menu link items style*/
.jqueryslidemenu ul li a{
display: block;
background: url(test.gif) top left repeat-x;
color: white;
padding: 8px 10px;
border-right: 1px solid #778;
color: #2d2b2b;
text-decoration: none;
}
Then further down the CSS, for the sub menu links (A element again), overwrite that for those links:
Code:
/* Sub level menu links style */
.jqueryslidemenu ul li ul li a{
font: normal 13px Verdana;
width: 160px; /*width of sub menus*/
background: #414141;
padding: 5px;
margin: 0;
border-top-width: 0;
border-bottom: 1px solid gray;
}
Bookmarks