[All Adaptavist Apps]

Page tree

I like the rounded-corner menus in the new adaptavist site theme. Is it possible to do this with current versions of Builder, prerelease or otherwise? If so, what menu style is being used?

Thanks in advance,

Steve Lane
Soliant Consulting, Inc. http://www.soliantconsulting.com

  • No labels

2 Comments

  1. Unknown User (gfraser)

    It's just basic CSS applied to the menus:

    div.dynarch-popup-menu {
      -moz-border-radius: 0 6px 6px 6px;
      -webkit-border-bottom-left-radius: 6px;
      -webkit-border-bottom-right-radius: 6px;
      -webkit-top-bottom-right-radius: 6px;
      border-bottom-left-radius: 6px;
      border-bottom-right-radius: 6px;
      border-top-right-radius: 6px;
      filter:alpha(opacity=95);
      opacity: 0.95;
      -moz-opacity:0.95;
      padding: 3px 2px 2px 2px;
    }
    

    EDIT: Note that the top-left corner on our menus is not round, if you wanted all 4 corners round you'd use:

    div.dynarch-popup-menu {
      -moz-border-radius: 6px 6px;
      -webkit-border-radius: 6px 6px;
      border-radius: 6px 6px;
      filter:alpha(opacity=95);
      opacity: 0.95;
      -moz-opacity:0.95;
      padding: 3px 2px 2px 2px;
    }
    
  2. Unknown User (ian)

    Thanks for that,

    Can you also explain how to do the same for IE7?