Seeking help to round the corners of a tabbed dynamic menu using Drupal and the dynamic-persistent-menu module. The code provided below is almost perfect, with 99% accuracy. View the current state of the menu here: . Can anyone assist in achieving the remaining 1% perfection and ensure that both navi_top_right.png and navi_top_left.png appear simultaneously?
Below is the HTML I have utilized to create an active menu element:
After numerous attempts with different CSS styles, it seems like I need to turn to the community for assistance!
Here are the relevant CSS definitions currently being used:
a.dynamic-persistent-menu-menu-item { background: url(images/backgrounds/business/navi_top_left.png) top left no-repeat; }
.dynamic-persistent-menu-menu li.active, .dynamic-persistent-menu-menu a:hover {
background: #093056 url(images/backgrounds/business/navi_top_left.png) top left no-repeat;
}
.dynamic-persistent-menu-menu-item a.active {
background: #093056 url(images/backgrounds/business/navi_top_right.png) top right no-repeat;
}