Presenting our March Theme, Atlantic! This is a super clean corporate flavored theme that uses almost pure CSS3 to get the job done - it's fast and responsive and search engines will love it. As...
I'm having trouble getting the arrows to show up in the menus in Hammerhead. I have a single Nice Menu in the Primary Menu region and have set a custom css file to manage it. The CSS for the menuparent, though, isn't getting applied - no arrows are showing up. I've checked the Nice Menus documentation and everything looks right, so I thought I'd check here to see if there is a quirk in the theme that is causing the issue.
Right now, the site is on my testing server, but I'm going live on Monday (with or without the arrows) and at that point it will be available at http://www.mrrl.org.
Presenting our March Theme, Atlantic! This is a super clean corporate flavored theme that uses almost pure CSS3 to get the job done - it's fast and responsive and search engines will love it. As...
In a few days we will be retiring a few of our older themes, due to lack of interest and in the interest of diverting more resources to keeping our recent and more popular themes up to date - a...
Hey folks - quick note to let you know we've moved to a new server thanks to Knownhost.com. So far it seems much faster than our old one,...
Which version of Drupal are you using? I'll try to duplicate the problem and see what's happening.
Sorry for the delay - I'm using Drupal 7.12 and Nice Menus 7.x.2.1
I checked this out, and it's a bit difficult to say because the arrows for the default styling are showing without any issue, so without seeing your CSS I can't be 100% - but I looked over the documentation, and the only thing I can think of is that that because I use the #primary-links id in the CSS to style the menu, that's it's overriding the nice-menu css. So where as the the documentation instructs to do something like this:
ul.nice-menu li a:hover {
color: white;
background: black;
}
You may have more success doing something like this:
#primary-links ul.nice-menu li a:hover {
color: white;
background: black;
}
But as of right now I can't be sure until I see your code.
That worked to get the page to recognize the CSS. Now I just have to tweak it to get the arrows to show up properly! I should be able to figure that out... If not, though, my site is now live and the nice_menus_custom.css file is in the CSS folder in the theme (at sites/all/themes/hammerhead), just in case you want to look at it... Thanks for your help though - the #primary-links ID looks like it's going to work for me!