I have a nice menu in a block on sidebar first and when displaying rounded corners the menu hides behind the block's border. Any ideas? If I can't fix that, is there any way that only one specific block does not have rounded corners?

Thank you in advance.

Comments

ussuriysk’s picture

I have the same issue in Firefox 2.0.0.20 - but in IE 6 (with the enable IE support selected in the Nice Menu settings) they appear correctly.

albertorenteria’s picture

Hi I have applied nice menus in my acquia slate theme. Do you know how to solve the delay issue for the menus?

albertorenteria’s picture

Hi I have applied nice menus in my acquia slate theme. Do you know how to solve the delay issue for the menus?

jeremycaldwell’s picture

That's actually a tricky thing as it sounds like that block has rounded corners and a background gradient. If so this bit of CSS is controlling it:

div.rounded-inside {
  background: #292929 url('images/block-gradient.png') repeat-x bottom;
  border-bottom: 0;
  border-left: 1px solid #4B4B4B;
  border-right: 1px solid #4B4B4B;
  border-top: 0;
  overflow: hidden;
  padding: 0 10px;
}

And as you can see there is an "overflow: hidden;" in there. You can try this change but I'm not sure if it will work for all bocks or just ones with Nice Menus. Add this bit of CSS to your local.css file:

div.rounded-inside {
  overflow: visible;
}
jeremycaldwell’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.