-1

This site is a copy of this site, except for the widget producing the left sidebar menu.

The problem is that to the left of Leadership in the left side menu on the first site, the arrow points to the right. However, it has the following CSS applied to it:

.page-menu.ancestor-tree ul li.current_page_item a:before {
    font-family: 'Zapf Dingbats';
    font-size: 15px;
    content: '\276F';
    margin-right: 10px;
    transition: all 0.3s;
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

This mimics the CSS on the 2nd site, where the arrow to the left of Leadership in the left side menu is successfully rotated 90 degrees clockwise, so that the arrow points down.

enter image description here

Why is the rotation working on the 2nd site and not on the 1st?

Steve
  • 2,066
  • 13
  • 60
  • 115

1 Answers1

0

You should add display:inline-block; or display:block; to your css class.

thstamod
  • 174
  • 1
  • 8