To get rid of the bars, get rid of (highlighted):
Code:
/*Top level menu link items style*/
.jqueryslidemenu ul li a{
display: block;
color: white;
padding: 8px 10px;
border-right: 1px solid #5f8700;
color: #2d2b2b;
text-decoration: none;
}
The arrows are part of the script. I'd try editing them out from here in the jqueryslidemenu.js file (remove the highlighted):
Code:
$curobj.children("a:eq(0)").css(this.istopheader? {paddingRight: arrowsvar.down[2]} : {}).append(
'<img src="'+ (this.istopheader? arrowsvar.down[1] : arrowsvar.right[1])
+'" class="' + (this.istopheader? arrowsvar.down[0] : arrowsvar.right[0])
+ '" style="border:0;" />'
)
Make sure to remove all of the highlighted section. If you leave any behind it will cause an error.
Bookmarks