hello, the module works with me, and now I have rounded corners.. but I can't understand how to have rounded borders also... I saw a similar issue closed, but it referred to drupal 5, and says nothing...
More specifically, what I want is not only a rounded background for blocks, but a rounded border all around blocks... how can I?
Hope someone knows/it's possible.
Thanks

Comments

giozzz’s picture

I've discovered a possible solution, the radius-border property, and I'm now searching for some help to make it work in IE too. I've found this tutorial < a href: http://jonraasch.com/blog/css-rounded-corners-in-all-browsers> ... but I'm a real noob, and I don't know to put that .htc file .. can someone suggest me how to? I think this could be helpful for many of us using drupal! thanks

fending’s picture

If your goal is essentially a strike/line around a rounded element (like a block or menu item), just apply the border css to that selector that you're already rounding... rounded_corners will round it all at one time:

CSS:

.myblock .selector {
  border: 1px solid #000000;
}