What you can do is apply a CSS class to the UL that directly contains the images to try and style it and its menu items as desired. For example, in the below chunk of code, you'd add the code in red:
Code:
<ul>
<li><a href="#">Sub Item 5.1b</a></li>
<li><a href="#">Item Folder 5.2b</a>
<ul class="customstyle">
<li><a href="#"><img src="test.gif" style="border:0" /></a></li>
<li><a href="#">Sub Item 5.2.2b</a></li>
<li><a href="#"><img src="test2.gif" style="border:0" /></a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Item 6b</a></li>
</ul>
Inside ddlevelsmenu-base.css is the default style that applies to the sub menus in general. Add to it something like the below that targets the aforementioned UL specifically:
Code:
ul.customstyle{
border-width: 0;
}
ul.customstyle li a{
border-bottom-width: 0;
background: white;
}
It's up to you to get the CSS right as you see fit.
Bookmarks